diff --git a/benckmarks.md b/benckmarks.md index 51a6e7c..996c98a 100644 --- a/benckmarks.md +++ b/benckmarks.md @@ -6,7 +6,6 @@ This evaluation was performed on the Mozilla-Foundation/Common-Voice-17-0 datase | distil-whisper/distil-large-v3 | 120.48 | | distil-whisper/distil-large-v3 + Bnb | 120.14 | - Bnb: https://github.com/TimDettmers/bitsandbytes Dataset: https://huggingface.co/datasets/mozilla-foundation/common_voice_17_0 diff --git a/whisperplus/__init__.py b/whisperplus/__init__.py index 25a497b..0b9c36e 100644 --- a/whisperplus/__init__.py +++ b/whisperplus/__init__.py @@ -1,14 +1,13 @@ -from whisper.pipelines.whisper_autocaption import WhisperAutoCaptionPipeline - from whisperplus.pipelines.autollm_chatbot import AutoLLMChatWithVideo from whisperplus.pipelines.long_text_summarization import LongTextSummarizationPipeline from whisperplus.pipelines.summarization import TextSummarizationPipeline from whisperplus.pipelines.text2speech import TextToSpeechPipeline from whisperplus.pipelines.whisper import SpeechToTextPipeline +from whisperplus.pipelines.whisper_autocaption import WhisperAutoCaptionPipeline from whisperplus.pipelines.whisper_diarize import ASRDiarizationPipeline from whisperplus.utils.download_utils import download_and_convert_to_mp3 from whisperplus.utils.text_utils import format_speech_to_dialogue -__version__ = '0.3.1' +__version__ = '0.3.3' __author__ = 'kadirnar' __license__ = 'Apache License 2.0'