Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: spelling errors #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
'The phase can be train, eval or test')

tf.flags.DEFINE_boolean('load', False,
'Turn on to load a pretrained model from either \
'Turn on to load a pre-trained model from either \
the latest checkpoint or a specified file')

tf.flags.DEFINE_string('model_file', None,
'If sepcified, load a pretrained model from this file')
'If specified, load a pre-trained model from this file')

tf.flags.DEFINE_boolean('load_cnn', False,
'Turn on to load a pretrained CNN model')
'Turn on to load a pre-trained CNN model')

tf.flags.DEFINE_string('cnn_model_file', './vgg16_no_fc.npy',
'The file containing a pretrained CNN model')
'The file containing a pre-trained CNN model')

tf.flags.DEFINE_boolean('train_cnn', False,
'Turn on to train both CNN and RNN. \
Expand Down