From ff921127f4119a0970677cff70fd41cf570d6c81 Mon Sep 17 00:00:00 2001 From: kadirnar Date: Mon, 6 May 2024 14:58:25 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20=20Update=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- benckmarks.md | 1 - whisperplus/__init__.py | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) 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'