Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

guojiangwei/tensorflow-101

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

34 Commits

Repository files navigation

Table of Contents generated with DocToc

TensorFlow 快速入门与实战

课程列表

第一部分:TensorFlow初印象

课件

第二部分:TensorFlow初接触

课件 | 代码

第三部分:TensorFlow基础概念解析

课件 | 代码

第四部分:实战TensorFlow房价预测

课件 | 代码

第五部分:实战TensorFlow手写体数字识别

课件 | 代码

第六部分:实战TensorFlow验证码识别

课件 | 代码

第七部分:实战TensorFlow人脸识别

课件 | 代码

第八部分:TensorFlow社区参与指南

课件

问题答疑

我将极客时间上多次提到的问题整理在此,希望可以解答有同样问题的朋友。

1. Windows 上安装 TensorFlow 流程

对于有英文基础的朋友,建议直接阅读官网安装教程。本答案翻译自 TensorFlow 官网。

系统环境要求:

  • Windows 7(64位) 以上版本
  • 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. 安装 pipvirtualenv
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. 学这个课程需要什么样的基础?

About

《TensorFlow 快速入门与实战》课件与参考代码

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.0%
  • Python 1.0%

AltStyle によって変換されたページ (->オリジナル) /