TensorFlow 基础(一)

2018-12-24
阅读 1 分钟
1.3k
背景 略 基础 介绍 略 TensorFlow安装 link TensorFlow 主要概念 使用图(graph)来表示计算任务(执行流程). 在被称之为会话(session)的上下文(context)中执行图. 使用tensor表示数据结构, 如下是特殊的tensor tf.Variable tf.constant tf.placeholder tf.SparseTensor 使用 feed 和 fetch 可以为任意的操作(arbitrary ope...