Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimas committed Nov 29, 2024
1 parent 28a362b commit 388a6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/whisper_ctranslate2/commandline.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def read_command_line():
algorithm_args.add_argument(
"--suppress_blank",
type=CommandLine._str2bool,
default="True",
default=True,
help="suppress blank outputs at the beginning of the sampling",
)
algorithm_args.add_argument(
Expand Down Expand Up @@ -352,7 +352,7 @@ def read_command_line():
algorithm_args.add_argument(
"--batched",
type=CommandLine._str2bool,
default="False",
default=False,
help="Uses Batched transcription which can provide an additional 2x-3x speed increase",
)

Expand Down

0 comments on commit 388a6e8

Please sign in to comment.