From d2b18313d277f816727ac3f3953feb25ded4277c Mon Sep 17 00:00:00 2001 From: Shuhei Iitsuka Date: Wed, 4 Apr 2018 09:47:02 +0900 Subject: [PATCH] Use directional and temporal features by default. Change-Id: I9477779f96b761277e8c7c3d5c8d6882fcc76470 --- mozc-nazoru/bin/nazoru-training | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozc-nazoru/bin/nazoru-training b/mozc-nazoru/bin/nazoru-training index 1fc511e..a851631 100755 --- a/mozc-nazoru/bin/nazoru-training +++ b/mozc-nazoru/bin/nazoru-training @@ -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.' )