提交 1feceb69 编写于 作者: J Jeff Hammerbacher

Update MNIST tutorial for beginners to indicate that the data is split into 3 rather than 2 parts.

Change-Id: I8f4b4453d07d25964ca756d40e6925b549c5f220
上级 961fd75d
......@@ -45,11 +45,12 @@ import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
```
The downloaded data is split into two parts, 60,000 data points of training
data (`mnist.train`) and 10,000 points of test data (`mnist.test`). This
split is very important: it's essential in machine learning that we
have separate data which we don't learn from so that we can make sure
that what we've learned actually generalizes!
The downloaded data is split into three parts, 55,000 data points of training
data (`mnist.train`), 10,000 points of test data (`mnist.test`), and 5,000
points of validation data (`mnist.validation`). This split is very important:
it's essential in machine learning that we have separate data which we don't
learn from so that we can make sure that what we've learned actually
generalizes!
As mentioned earlier, every MNIST data point has two parts: an image of a
handwritten digit and a corresponding label. We will call the images "xs" and
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册