I am trying to test a short program, which is pretty simple as shown below.
import numpy as np import tensorflow as tf flags = tf.app.flags FLAGS = flags.FLAGS import tensorvision.train as train import tensorvision.utils as utils flags.DEFINE_string('name', None, 'Append a name Tag to run.') flags.DEFINE_string('hypes', 'hypes/medseg.json', 'File storing model parameters.') if __name__ == '__main__': tf.app.run()
However, when the program starts, the following error message appears:
Traceback (most recent call last): File "train.py", line 43, in <module> tf.app.run() File "/devl/tensorflow/tf_0.12/lib/python3.4/site- packages/tensorflow/python/platform/app.py", line 39, in run main = main or sys.modules['__main__'].main AttributeError: 'module' object has no attribute 'main'
source share