第4章 TensorFlow编程基础
4.1 使用Session编写hello world:程序:import tensorflow as tfhello = tf.constant('hello tensorflow')sess = tf.Session()print(sess.run(hello))sess.close()结果:b'hello tensorflow'4.2 with session的使用此段...