TensorFlow基础
TensorFlow是一个基于数据流编程(dataflow programming)的符号数学系统,被广泛应用于各类机器学习(machine learning)算法的编程实现,其前身是谷歌的神经网络算法库DistBelief。
安装
这里使用的是Anaconda安装,打开黑窗口(Anaconda Prompt),输入命令:
pip install tensorflow
或者在图形界面环境,Not installed 搜索 tensorflow,点击安装即可。
简单用法
import tensorflow as tf
# Simple hello world using TensorFlow
# Create a Constant op
# The op is added as a node to the default graph.
#
# The value returned by the constructor represents the output
# of the Constant op.
#定义一个常量
hello = tf.constant("Hello, Tensorflow")