From dd8fde7f19ecd9695d6bc6cf94896a2cf87a0e7c Mon Sep 17 00:00:00 2001 From: Michele Dolfi <97102151+dolfim-ibm@users.noreply.github.com> Date: Mon, 7 Jul 2025 08:59:14 +0200 Subject: [PATCH] fix: typo in asr options (#1902) fix typo Signed-off-by: Michele Dolfi --- docling/datamodel/asr_model_specs.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docling/datamodel/asr_model_specs.py b/docling/datamodel/asr_model_specs.py index 95287ad2..426b5851 100644 --- a/docling/datamodel/asr_model_specs.py +++ b/docling/datamodel/asr_model_specs.py @@ -22,7 +22,7 @@ WHISPER_TINY = InlineAsrNativeWhisperOptions( verbose=True, timestamps=True, word_timestamps=True, - temperatue=0.0, + temperature=0.0, max_new_tokens=256, max_time_chunk=30.0, ) @@ -33,7 +33,7 @@ WHISPER_SMALL = InlineAsrNativeWhisperOptions( verbose=True, timestamps=True, word_timestamps=True, - temperatue=0.0, + temperature=0.0, max_new_tokens=256, max_time_chunk=30.0, ) @@ -44,7 +44,7 @@ WHISPER_MEDIUM = InlineAsrNativeWhisperOptions( verbose=True, timestamps=True, word_timestamps=True, - temperatue=0.0, + temperature=0.0, max_new_tokens=256, max_time_chunk=30.0, ) @@ -55,7 +55,7 @@ WHISPER_BASE = InlineAsrNativeWhisperOptions( verbose=True, timestamps=True, word_timestamps=True, - temperatue=0.0, + temperature=0.0, max_new_tokens=256, max_time_chunk=30.0, ) @@ -66,7 +66,7 @@ WHISPER_LARGE = InlineAsrNativeWhisperOptions( verbose=True, timestamps=True, word_timestamps=True, - temperatue=0.0, + temperature=0.0, max_new_tokens=256, max_time_chunk=30.0, ) @@ -77,7 +77,7 @@ WHISPER_TURBO = InlineAsrNativeWhisperOptions( verbose=True, timestamps=True, word_timestamps=True, - temperatue=0.0, + temperature=0.0, max_new_tokens=256, max_time_chunk=30.0, )