1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
import io
import joblib
from logger import log, log_err
import numpy as np
import pandas as pd
from pathlib import Path
import pronouncing
import re
import sys
def count_syllables(word):
"""Count syllables in a word using pronouncing library with regex fallback."""
phones = pronouncing.phones_for_word(word.lower())
if len(phones) == 0:
return 0
return pronouncing.syllable_count(phones[0])
def text_syllable_count(text):
"""Count total syllables in text."""
words = re.findall(r'\b\w+\b', text)
return sum(count_syllables(word) for word in words)
class HallucinationFilter:
"""Filter for detecting hallucinated segments in speech-to-text output."""
def __init__(self, cfg, model_path: Path = None):
"""
Initialize the hallucination filter.
Args:
model_path: Optional path to the model file. If not provided,
uses the default path.
"""
self.cfg = cfg
self.model = None
self.threshold = None
self.features = None
# Get the project root directory
app_root = Path(__file__).resolve().parent
project_root = app_root.parent
model_path = project_root / "Models" / "thankyou_filter_gb.pkl"
# Try to load the model
log(f"Loading hallucination filter")
bundle = joblib.load(model_path)
self.model = bundle["model"]
self.threshold = bundle["threshold"]
self.features = bundle["features"]
log(f"Loaded hallucination filter model from {model_path}")
def is_hallucination(self, segment) -> bool:
"""
Check if a segment is likely a hallucination.
Returns False if model is not available.
Args:
segment: A segment object with attributes avg_logprob, audio_len_s,
no_speech_prob, compression_ratio, text, start, and end.
Returns:
bool: True if the segment is likely a hallucination, False otherwise.
"""
s = segment # Brevity
if s.no_speech_prob == 0:
# no_speech is not available. Use fancy classifier trained on my
# speech data.
text = s.transcript
duration = s.audio_len_s
raw_duration = s.end_ts - s.start_ts
n_syllables = text_syllable_count(text)
sps = n_syllables / duration
raw_sps = n_syllables / raw_duration
duration_ratio = raw_duration / duration
X = pd.DataFrame([[
s.avg_logprob,
s.no_speech_prob,
s.compression_ratio,
np.log1p(duration),
np.log1p(sps),
np.log1p(raw_duration),
np.log1p(raw_sps),
duration_ratio,
s.avg_logprob * duration
]], columns=self.features)
# Get probability
prob = self.model.predict_proba(X)[0, 1]
return prob >= self.threshold
# If no_speech is set, use simpler filter.
if s.no_speech_prob > 0.6 and s.avg_logprob < -0.5:
if self.cfg["enable_debug_mode"]:
print(f"Drop probable hallucination (case 1) " +
f"(text='{s.text}', " +
f"no_speech_prob={s.no_speech_prob}, " +
f"avg_logprob={s.avg_logprob})", file=sys.stderr)
return True
# Another touchup targeted at the vexatious "thanks for watching!"
# hallucination. This triggers a lot when listening to
# instrumental/electronic music.
if s.no_speech_prob > 0.15 and s.avg_logprob < -0.7:
if self.cfg["enable_debug_mode"]:
print(f"Drop probable hallucination (case 2) " +
f"(text='{s.text}', " +
f"no_speech_prob={s.no_speech_prob}, " +
f"avg_logprob={s.avg_logprob})", file=sys.stderr)
return True
return False
|