Skip to content

Commit

Permalink
change language_detection_threshold default value (#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
MahmoudAshraf97 authored Nov 13, 2024
1 parent fb65cd3 commit c2bf036
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions faster_whisper/transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ def transcribe(
clip_timestamps: Union[str, List[float]] = "0",
hallucination_silence_threshold: Optional[float] = None,
hotwords: Optional[str] = None,
language_detection_threshold: Optional[float] = None,
language_detection_threshold: Optional[float] = 0.5,
language_detection_segments: int = 1,
) -> Tuple[Iterable[Segment], TranscriptionInfo]:
"""Transcribes an input file.
Expand Down Expand Up @@ -882,10 +882,7 @@ def transcribe(
]
# Get top language token and probability
language, language_probability = all_language_probs[0]
if (
language_detection_threshold is None
or language_probability > language_detection_threshold
):
if language_probability > language_detection_threshold:
break
detected_language_info.setdefault(language, []).append(
language_probability
Expand Down

0 comments on commit c2bf036

Please sign in to comment.