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 d4827d0 commit 4e88ba1Copy full SHA for 4e88ba1
app/criteria/utils.py
@@ -65,6 +65,7 @@ def get_fillers(fillers: list, audio: Audio) -> list:
65
found_fillers = []
66
for audio_slide in audio.audio_slides:
67
found_slide_fillers = []
68
+ # добавлена предобработка слов - перевод в нижний регистр, очистка от пунктуации
69
audio_slide_words = [
70
recognized_word.word.value.strip().lower().translate(str.maketrans('', '', string.punctuation))
71
for recognized_word in audio_slide.recognized_words
0 commit comments