Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mnist_tf.md #154

Merged
merged 1 commit into from
Oct 31, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SOURCE/tutorials/mnist_tf.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ labels_placeholder = tf.placeholder(tf.int32, shape=(batch_size))

`inference()`函数会尽可能地构建图表,做到返回包含了预测结果(output prediction)的Tensor。

它接受图像占位符为输入,在此基础上借助ReLu(Rectified Linear Units)激活函数,构建一对完全连接层(layers),以及一个有着十个节点(node)、指明了输出logtis模型的线性层
它接受图像占位符为输入,在此基础上借助ReLu(Rectified Linear Units)激活函数,构建一对完全连接层(layers),以及一个有着十个节点(node)、指明了输出logits模型的线性层

每一层都创建于一个唯一的[`tf.name_scope`](../api_docs/python/framework.md#name_scope)之下,创建于该作用域之下的所有元素都将带有其前缀。

Expand Down Expand Up @@ -397,4 +397,4 @@ print ' Num examples: %d Num correct: %d Precision @ 1: %0.02f' % (

> 原文:[TensorFlow Mechanics 101](http://www.tensorflow.org/tutorials/mnist/tf/index.md)
> 翻译:[bingjin](https://github.com/bingjin)
> 校对:[LichAmnesia](https://github.com/LichAmnesia)
> 校对:[LichAmnesia](https://github.com/LichAmnesia)