Tag: TensorFlow
All the articles with the tag "TensorFlow".
TensorFlow-2学习笔记-3-线性回归
Published: at 02:13 AM谷歌机器学习速成课程:https://developers.google.cn/machine-learning/crash-course/监督式机器学习通过学习如何组合输入信息,来对未见过的数据,做出有用的预测
TensorFlow-2学习笔记-2-基础知识
Published: at 05:16 AM计算图的执行需要在 session 中执行node1=tf.constant([3,4,5]) sess=tf.Session() print(sess.run(node1)) sess.close()
TensorFlow-2学习笔记-1-基础知识
Published: at 05:44 AMTensor 是张量,数据结构为多维数组Flow 是流,表示张量之间计算转换的过程组合起来就是数据流图