学习笔记(01):轻松入门Tensorflow-TensorFlow开发环境搭建

澹台岳
2023-12-01

立即学习:https://edu.csdn.net/course/play/26266/326661?utm_source=blogtoedu

1.4

(1)安装Python环境:推荐安装Anaconda
下载地址:https://www.anaconda.com/distribution/
(2)使用建立conda建立虚拟环境
conda create --name tf2.0.0rc1 python=3.7
(3)使用pip安装TensorFlow

pip install tensorflow==2.0.0rc1 # cpu版本

pip install tensorflow==2.0.0rc1-gpu

# gpu版本

(4)安装PyCharm
下载地址:http://www.jetbrains.com/pycharm/

 

=============================

Colab网址:https://colab.research.google.com

 

(1)指定TensorFlow版本
!pip3 install tensorflow==1.14.0
(2)使用GPU加快训练速度
tf.test.is_gpu_available()
(3)加载Google Drive使用自定义数据集
(4)重启运行时
    切换版本的时候需要用到

 类似资料: