Update export_models.py

set the default value of "token_and_classify_and_verbalize" to "combine".
This commit is contained in:
Chong Zhang 2023-01-04 16:58:07 +08:00 committed by GitHub
parent 6b7134d491
commit 7836bee517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(