TensorFlow

安装

我的系统是mac,python是3.6版本的,所以直接用命令行安装。

pip3 install tensorflow
pip3 install tensorflow-gpu

什么是TensorFlow

tensorflow 是谷歌开发的一款神经网络的python外部的结构包,可以快速入门神经网络。

TensorFlow Demo

import tensorflow as tsf

hello = tsf.constant('Hello, TensorFlow!')
sess = tsf.Session()
print(sess.run(hello))

mark:
https://morvanzhou.github.io/tutorials/machine-learning/tensorflow/

你可能感兴趣的:(机器学习)