Просмотр исходного кода

Update export_models.py

set the default value of "token_and_classify_and_verbalize" to "combine".
Chong Zhang 3 лет назад
Родитель
Сommit
7836bee517
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      fun_text_processing/inverse_text_normalization/export_models.py

+ 1 - 1
fun_text_processing/inverse_text_normalization/export_models.py

@@ -24,7 +24,7 @@ def parse_args():
 
     parser.add_argument(
         "--token_and_classify_and_verbalize", help="export the single token&classify and verbalize or combined", choices=['single', 'combine'],
-        default="single", type=str
+        default="combine", type=str
     )
 
     parser.add_argument(