aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/learn/resnet.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/examples/learn/resnet.py')
-rwxr-xr-xtensorflow/examples/learn/resnet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/examples/learn/resnet.py b/tensorflow/examples/learn/resnet.py
index 33a09bb6e0..1e0966475b 100755
--- a/tensorflow/examples/learn/resnet.py
+++ b/tensorflow/examples/learn/resnet.py
@@ -190,8 +190,8 @@ def main(unused_args):
# Calculate accuracy.
test_input_fn = tf.estimator.inputs.numpy_input_fn(
- x={X_FEATURE: mnist.train.images},
- y=mnist.train.labels.astype(np.int32),
+ x={X_FEATURE: mnist.test.images},
+ y=mnist.test.labels.astype(np.int32),
num_epochs=1,
shuffle=False)
scores = classifier.evaluate(input_fn=test_input_fn)