Skip to content

Commit 0f16cd0

Browse files
Set verbatim-transcripts to False by default
1 parent 6db03dc commit 0f16cd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

riva/client/argparse_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ def add_asr_config_argparse_parameters(
3737
)
3838
parser.add_argument(
3939
"--verbatim-transcripts",
40-
default=True,
41-
action='store_false',
40+
default=False,
41+
action='store_true',
4242
help="True returns text exactly as it was said. False applies Inverse text normalization",
4343
)
4444
parser.add_argument("--language-code", default="en-US", help="Language code of the model to be used.")

0 commit comments

Comments
 (0)