此贴专题

TensorFlow神经网络机器学习使用详细教程,此贴会更新!!!

运行 TensorFlow打开一个 python 终端: 1 $ python 2 >>> import tensorflow as tf 3 >>> hello = tf.constant('Hello, TensorFlow!') 4 >>> sess = tf.Session() 5 >>> print sess.run(hello) 6 Hello, TensorFlow!