From c98c91b53074fa7697303e95e7e1e8b8941c59e9 Mon Sep 17 00:00:00 2001 From: Vijay Vasudevan Date: Sat, 13 Feb 2016 13:38:55 -0800 Subject: [PATCH] Update 0.6.0 docs with fix to tutorial. Fixes #1084 --- tensorflow/g3doc/tutorials/mnist/beginners/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/g3doc/tutorials/mnist/beginners/index.md b/tensorflow/g3doc/tutorials/mnist/beginners/index.md index 0e414c1023a..de003370c3b 100644 --- a/tensorflow/g3doc/tutorials/mnist/beginners/index.md +++ b/tensorflow/g3doc/tutorials/mnist/beginners/index.md @@ -43,7 +43,7 @@ automatically. You can either download and import it as below, or simply copy and paste it in. ```python -import tensorflow.examples.tutorials.mnist.input_data +from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("MNIST_data/", one_hot=True) ``` -- GitLab