We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de755af commit 1fed1e5Copy full SHA for 1fed1e5
riva/client/argparse_utils.py
@@ -37,9 +37,9 @@ def add_asr_config_argparse_parameters(
37
)
38
parser.add_argument(
39
"--verbatim-transcripts",
40
- default=True,
41
- action='store_false',
42
- help="True returns text exactly as it was said. False applies Inverse text normalization",
+ default=False,
+ action='store_true',
+ help="Flag to disable Inverse text normalization and return the text exactly as it was said",
43
44
parser.add_argument("--language-code", default="en-US", help="Language code of the model to be used.")
45
parser.add_argument("--model-name", default="", help="Name of the model to be used to be used.")
0 commit comments