You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ⓔ \textcolor{etc}{Let's get you up and running with TensorFlow!}
11
11
12
-
Ⓒ 本章的目的是让你了解和运行 TensorFlow!
12
+
Ⓒ 本章的目的是让你了解和运行 TensorFlow!
13
13
14
14
Ⓔ \textcolor{etc}{But before we even get started, let's peek at what TensorFlow code looks like in the Python API, so you have a sense of where we're headed.}
15
15
16
-
Ⓒ 在开始之前, 让我们先看一段使用 Python API 撰写的 TensorFlow 示例代码,
16
+
Ⓒ 在开始之前,让我们先看一段使用 Python API 撰写的 TensorFlow 示例代码,
17
17
让你对将要学习的内容有初步的印象.
18
18
19
19
Ⓔ \textcolor{etc}{Here's a little Python program that makes up some data in two dimensions, and then fits a line to it.}
20
20
21
-
Ⓒ 下面这段短小的Python程序将把一些数据放入二维空间,再用一条线来拟合这些数据。
21
+
Ⓒ 下面这段短小的Python程序将把一些数据放入二维空间,再用一条线来拟合这些数据.
22
22
23
23
\begin{lstlisting}
24
24
import tensorflow as tf
@@ -58,11 +58,11 @@ \section{Introduction || 简介}
58
58
59
59
Ⓔ \textcolor{etc}{The first part of this code builds the data flow graph. TensorFlow does not actually run any computation until the session is created and the run function is called.}
Ⓔ \textcolor{etc}{To whet your appetite further, we suggest you check out what a classical machine learning problem looks like in TensorFlow. In the land of neural networks the most "classic" classical problem is the MNIST handwritten digit classification. We offer two introductions here, one for machine learning newbies, and one for pros. If you've already trained dozens of MNIST models in other software packages, please take the red pill. If you've never even heard of MNIST, definitely take the blue pill. If you're somewhere in between, we suggest skimming blue, then red.}
0 commit comments