We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8e9ad commit 8815a86Copy full SHA for 8815a86
tutorials/image/cifar10/cifar10.py
@@ -35,12 +35,12 @@
35
from __future__ import division
36
from __future__ import print_function
37
38
+import argparse
39
import os
40
import re
41
import sys
42
import tarfile
43
-import argparse
44
from six.moves import urllib
45
import tensorflow as tf
46
@@ -59,6 +59,7 @@
59
help='Train the model using fp16.')
60
61
FLAGS = parser.parse_args()
62
+
63
# Global constants describing the CIFAR-10 data set.
64
IMAGE_SIZE = cifar10_input.IMAGE_SIZE
65
NUM_CLASSES = cifar10_input.NUM_CLASSES
0 commit comments