Tensorflow安装及实现第一个程序hello world
1、安装Anaconda
2、安装Tensorflow-CPU
3、Pycharm使用Tensorflow
4、Tensorflow测试
import tensorflow as tf
print("tensorflow版本:" + tf.__version__)
hello = tf.constant('hello, tensorflow')
print(hello)
1、安装Anaconda
2、安装Tensorflow-CPU
3、Pycharm使用Tensorflow
4、Tensorflow测试
import tensorflow as tf
print("tensorflow版本:" + tf.__version__)
hello = tf.constant('hello, tensorflow')
print(hello)