You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/changelog/changelog_3.0.rst
+10-1
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,22 @@
5
5
3.0 Changelog
6
6
*************
7
7
8
+
3.0.7
9
+
-----
10
+
11
+
- Add check for current version vs latest version on run
12
+
- Added :code:`--final_clean` flag to clean temporary files at the end of each run, along with a :code:`--always_final_clean` flag for :code:`mfa configure`
13
+
- Removed dependencies on :code:`sox` and :code:`ffmpeg` as audio loading is done through :code:`librosa` in :code:`kalpy`
14
+
- Removed poorly aligned files in subset from further training
15
+
- Fixed an issue where specified words for cutoff modeling
16
+
8
17
3.0.6
9
18
-----
10
19
11
20
- Fixed an issue where alignment analysis would not produce data for speech log likelihood and phone duration deviation
12
21
- Changed phone duration deviation metric to be maximum duration deviation rather than average across all phones in the utterance
13
22
- Fixed a crash when an empty phone set was specified in phone groups configuration files
14
-
- Fixed a crash when when using the :code:`--language` flag with values other than :code`japanese`, :code`thai`, :code`chinese` or :code`korean`
23
+
- Fixed a crash when when using the :code:`--language` flag with values other than :code:`japanese`, :code:`thai`, :code:`chinese` or :code:`korean`
Copy file name to clipboardExpand all lines: docs/source/user_guide/dictionary.rst
+15-2
Original file line number
Diff line number
Diff line change
@@ -191,17 +191,30 @@ Modeling cutoffs and hesitations
191
191
192
192
Often in spontaneous speech, speakers will produce truncated or cut-off words of the following word/words. To help model this specific case, using the flag :code:`--use_cutoff_model` will enable a mode where pronunciations are generated for cutoff words matching one of the following criteria:
193
193
194
-
1. The cutoff word matches the pattern of :code:`{start_bracket}(cutoff|hes)`, where :code:`{start_bracket}` is the set of all left side brackets defined in :code:`brackets` (:ref:`configuration_dictionary`). The following word must not be an OOV or non-speech word (silence, laughter, another cutoff, etc).
194
+
1. The cutoff word matches the pattern of :code:`{start_bracket}(cutoff|hes)`, where :code:`{start_bracket}` is the set of all left side brackets defined in :code:`brackets` (:ref:`configuration_dictionary`). Optionally, you can specify the intended word via a hyphen within the brackets (i.e., :code:`<cutoff-cut>`). If a target word isn't specified, then the immediately following word will be used if it's not an OOV or non-speech word (silence, laughter, another cutoff, etc).
195
195
2. The cutoff word matches the pattern of :code:`{start_bracket}(cutoff|hes)[-_](word){end_bracket}`, where start and end brackets are defined in :code:`brackets` (:ref:`configuration_dictionary`). The :code:`word` will be used in place of the following word above, but needs to be present in the dictionary, otherwise the target word for the cutoff will default back to the following word.
196
196
197
-
The generated pronunciations will be subsequences of the following word, along with an :code:`spn` pronunciation. For example, given an utterance transcript like "<cutoff> cut off" will have the following pronunciations generated for the `English (US) MFA dictionary <https://mfa-models.readthedocs.io/en/latest/dictionary/English/English%20%28US%29%20MFA%20dictionary%20v3_0_0.html>`_:
197
+
The generated pronunciations will be subsequences of the following word, along with an :code:`spn` pronunciation. For example, consider an utterance transcript like
198
198
199
199
::
200
200
201
+
<cutoff-off> with the <cutoff> <cutoff> cut off
202
+
203
+
204
+
The following pronunciations will be generated for the `English (US) MFA dictionary <https://mfa-models.readthedocs.io/en/latest/dictionary/English/English%20%28US%29%20MFA%20dictionary%20v3_0_0.html>`_:
0 commit comments