tensorflow-101

《TensorFlow 快速入门与实战》和《TensorFlow 2 项目进阶实战》课程代码与课件

OTHER License

Stars
441

Table of Contents generated with DocToc

TensorFlow

TensorFlow

TensorFlow

|

TensorFlow

|

TensorFlow

|

TensorFlow

|

TensorFlow

|

TensorFlow

|

TensorFlow


1. Windows TensorFlow

TensorFlow

  • Windows 764)
  • Python 3.4, 3.5 3.6

Windows TensorFlow

  1. Python

Python

python3 --version
pip3 --version
virtualenv --version
  1. Microsoft Visual C++ 2015 Redistributable Update 3 Visual Studio 2015
  • Visual Studio
  • Redistributables and Build Tools
  • Microsoft Visual C++ 2015 Redistributable Update 3
  1. Windows 64 Python 3
  1. pip virtualenv
pip3 install -U pip virtualenv
  1. Python
virtualenv --system-site-packages -p python3 ./venv
.\venv\Scripts\activate
pip install --upgrade pip
pip list  #  venv 
deactivate  #  TensorFlow  venv 
  1. TensorFlow pip
pip install --upgrade tensorflow
python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"

2.