第十五章:Tensorflow基本使用 Tensorflow基本使用 确认安装Tensorflow import tensorflow as tf a = tf.constant(10) b = tf.constant(32) sess = tf.Session() print(sess.run(a+b)) 42 获取MNIST数据集 # 获取MNIST数据集 # 获取地址:https:… 机器学习,第十五章:Tensorflow基本使用 56 字 | 几秒读完