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 9c370ce commit 8eeeeadCopy full SHA for 8eeeead
3 files changed
CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8
+## [1.14.7] - 2024-04-08
9
+
10
+## Fixed
11
12
+- Disfluency option is now backwards compatible.
13
14
## [1.14.6] - 2024-04-26
15
16
## Added
VERSION
@@ -1 +1 @@
1
-1.14.6
+1.14.7
speechmatics/cli_parser.py
@@ -488,8 +488,9 @@ def get_arg_parser():
488
)
489
rt_transcribe_command_parser.add_argument(
490
"--remove-disfluencies",
491
- default=False,
+ default=None,
492
action="store_true",
493
+ required=False,
494
help="Removes words tagged as disfluency.",
495
496
0 commit comments