Merge pull request #11 from google/flip_default_args

Use directional and temporal features by default.
This commit is contained in:
Shuhei Iitsuka
2018-04-04 10:31:10 +09:00
committed by GitHub

View File

@@ -266,12 +266,12 @@ if __name__ == '__main__':
)
parser.add_argument(
'--no_directional_feature',
action='store_false',
action='store_true',
help='Not to use directional feature.'
)
parser.add_argument(
'--no_temporal_feature',
action='store_false',
action='store_true',
help='Not to use temporal feature.'
)