安装TensorFlow

 Infi-chu:

http://www.cnblogs.com/Infi-chu/

Windows安装TensorFlow

CPU版本:pip install tensorflow

GPU版本:pip install tensorflow-gpu

更新TensorFlow:

pip uninstall tensorflow

pip install tensorflow

TensorFlow基本概念

1.使用图(graphs)来表示计算任务

2.在被称之为会话(session)的上下文(context)中执行图

3.使用tensor表示数据

4.通过变量(variable)维护状态

5.使用feed和fetch可以为任意的操作赋值或者从其中获取数据

TensorFlow是一个编程系统,使用图(graphs)来表示计算任务,图(graphs)中的节点称之为op(operation),一个op获得0个或多个Tensor,执行计算,产生0个或多个Tensor。Tensor看作是一个n维的数组或列表。图必须在会话(session)里被启动。

原文地址:https://www.cnblogs.com/Infi-chu/p/8562600.html