赞
踩
TensorFlow 是一个开源的、基于 Python 的机器学习框架,它由 Google 开发,并在图形分类、音频处理、推荐系统和自然语言处理等场景下有着丰富的应用,是目前最热门的机器学习框架。
参考下面的文章中的Anaconda那部分进行安装:
python --version
conda create --name tensorflow python=3.7.0
conda activate tensorflow
注意:若报“ check_hostname requires server_hostname”错误原因可能是没有关闭VPN,大家开启的话记得安装前提前先关闭VPN。
pip install tensorflow
pip install --ignore-installed --upgrade tensorflow-gpu
python
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello = tf.constant('Hello,Tensorflow')
sess= tf.compat.v1.Session()
print(sess.run(hello))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。