Skip to content

Commit bddf3a0

Browse files
committed
prepare for merge
1 parent d59d577 commit bddf3a0

File tree

5 files changed

+35
-431
lines changed

5 files changed

+35
-431
lines changed

tex_pdf/get_started/c1s01_introduction.tex

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
%!TEX program = xelatex
22
% Encoding: UTF8
3-
% SEIKA 2016 | [email protected]
3+
% SEIKA 2016 | [email protected]
44

5-
% Chapter 1
5+
% Chapter 1
66
% Section 1.1 Introduction
77

88
\section{Introduction || 简介}
99

1010
\textcolor{etc}{Let's get you up and running with TensorFlow!}
1111

12-
Ⓒ 本章的目的是让你了解和运行 TensorFlow!
12+
Ⓒ 本章的目的是让你了解和运行 TensorFlow
1313

1414
\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.}
1515

16-
Ⓒ 在开始之前, 让我们先看一段使用 Python API 撰写的 TensorFlow 示例代码,
16+
Ⓒ 在开始之前让我们先看一段使用 Python API 撰写的 TensorFlow 示例代码
1717
让你对将要学习的内容有初步的印象.
1818

1919
\textcolor{etc}{Here's a little Python program that makes up some data in two dimensions, and then fits a line to it.}
2020

21-
Ⓒ 下面这段短小的Python程序将把一些数据放入二维空间,再用一条线来拟合这些数据
21+
Ⓒ 下面这段短小的Python程序将把一些数据放入二维空间,再用一条线来拟合这些数据
2222

2323
\begin{lstlisting}
2424
import tensorflow as tf
@@ -58,11 +58,11 @@ \section{Introduction || 简介}
5858

5959
\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.}
6060

61-
Ⓒ 以上代码的第一部分构建了数据的流向图(flow graph)在一个session被建立并且\lstinline{run()}函数被运行前,TensorFlow不会进行任何实质的计算
61+
Ⓒ 以上代码的第一部分构建了数据的流向图(flow graph)在一个session被建立并且\lstinline{run()}函数被运行前,TensorFlow不会进行任何实质的计算
6262

6363
\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.}
6464

65-
Ⓒ 为了进一步激发你的学习欲望,我们想让你先看一下TensorFlow是如何解决一个经典的机器学习问题的在神经网络领域,最为经典的问题莫过于MNIST手写数字分类为此,我们准备了两篇不同的教程,分别面向初学者和专家如果你已经使用其它软件训练过许多MNIST模型, 请参阅\hyperref[MINIST_pros]{高级教程(红色药丸)}如果你以前从未听说过 MNIST, 请先阅读\hyperref[MINIST_beginner]{初级教程(蓝色药丸)}如果你的水平介于这两类人之间,我们建议你先快速浏览\hyperref[MINIST_beginner]{初级教程}, 然后再阅读\hyperref[MINIST_pros]{高级教程}
65+
Ⓒ 为了进一步激发你的学习欲望,我们想让你先看一下TensorFlow是如何解决一个经典的机器学习问题的在神经网络领域最为经典的问题莫过于MNIST手写数字分类为此,我们准备了两篇不同的教程,分别面向初学者和专家如果你已经使用其它软件训练过许多MNIST模型请参阅\hyperref[MINIST_pros]{高级教程(红色药丸)}如果你以前从未听说过 MNIST请先阅读\hyperref[MINIST_beginner]{初级教程(蓝色药丸)}如果你的水平介于这两类人之间,我们建议你先快速浏览\hyperref[MINIST_beginner]{初级教程}然后再阅读\hyperref[MINIST_pros]{高级教程}
6666

6767
% Add pics and links here.
6868

@@ -73,7 +73,6 @@ \section{Introduction || 简介}
7373
\includegraphics[width=.45\textwidth]{../SOURCE/images/red_pill.png}
7474
\end{center}
7575

76-
Ⓒ 如果你已下定决心准备学习和安装TensorFlow,你可以略过这些文字,直接阅读
77-
后面的章节\footnote{\textbf{推荐随后阅读内容}:\hyperref[download_install]{1 下载与安装}, \hyperref[basic_usage]{2 基本使用}, \hyperref[tf_mech101]{3 TensorFlow 101}.}。不用担心,你仍然会看到MNIST---在阐述TensorFlow的特性时,
78-
我们还会使用MNIST作为一个样例。
79-
76+
Ⓒ 如果你已下定决心准备学习和安装 TensorFlow ,你可以略过这些文字,直接阅读
77+
后面的章节\footnote{\textbf{推荐随后阅读内容}:\hyperref[download_install]{1 下载与安装}, \hyperref[basic_usage]{2 基本使用}, \hyperref[tf_mech101]{3 TensorFlow 101}.}.不用担心,你仍然会看到 MNIST --- 在阐述TensorFlow的特性时,
78+
我们还会使用MNIST作为一个样例.

0 commit comments

Comments
 (0)