安装:pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
使用图 (graph) 来表示计算任务;在被称之为会话(Session)的上下文 (context) 中执行图;使用 tensor 表示数据;通过变量(Variable)维护状态;使用 feed 和 fetch赋值或者获取数据。
图中的节点被称之为 op (operation);Tensor 是一个类型化的多维数组。
Python 语言中,返回的 tensor 是numpy ndarray对象;在C和C++语言中,返回的 tensor 是tensorflow::Tensor实例.