Commit 00e6186d authored by Olivia's avatar Olivia
Browse files

update parser imports

parent bad8b0ba
...@@ -44,7 +44,7 @@ import tensorflow as tf ...@@ -44,7 +44,7 @@ import tensorflow as tf
import cifar10 import cifar10
parser = argparse.ArgumentParser() parser = cifar10.parser
parser.add_argument('--eval_dir', type=str, default='/tmp/cifar10_eval', help='Directory where to write event logs.') parser.add_argument('--eval_dir', type=str, default='/tmp/cifar10_eval', help='Directory where to write event logs.')
......
...@@ -50,7 +50,7 @@ from six.moves import xrange # pylint: disable=redefined-builtin ...@@ -50,7 +50,7 @@ from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf import tensorflow as tf
import cifar10 import cifar10
parser = argparse.ArgumentParser() parser = cifar10.parser
parser.add_argument('--train_dir', type=str, default='/tmp/cifar10_train', help='Directory where to write event logs and checkpoint.') parser.add_argument('--train_dir', type=str, default='/tmp/cifar10_train', help='Directory where to write event logs and checkpoint.')
......
...@@ -43,7 +43,6 @@ import time ...@@ -43,7 +43,6 @@ import time
import tensorflow as tf import tensorflow as tf
import cifar10 import cifar10
from cifar10 import FLAGS
parser = cifar10.parser parser = cifar10.parser
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment