Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.0rc1 #387

Merged
merged 13 commits into from
Jan 11, 2022
Prev Previous commit
Next Next commit
Fix bug with special symbols in transcript
  • Loading branch information
mmcauliffe committed Jan 8, 2022
commit 2f777f12684f816df1ad697dc2ec61ce3717aa9b
2 changes: 1 addition & 1 deletion montreal_forced_aligner/dictionary/multispeaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def sanitize_function(self) -> MultispeakerSanitizationFunction:
self.clitic_markers,
self.compound_markers,
dictionary.clitic_set,
set(dictionary.words.keys()),
set(dictionary.actual_words.keys()),
)
return MultispeakerSanitizationFunction(
self.speaker_mapping, sanitize_function, split_functions
Expand Down