Skip to content

Commit 1fed1e5

Browse files
Set verbatim-transcripts to False by default
1 parent de755af commit 1fed1e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

riva/client/argparse_utils.py

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

0 commit comments

Comments
 (0)