CoolFace
Modelpublic

ctranslate2-4you/whisper-base-ct2-float16

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes20downloads
Model Card

πŸ—£οΈ Whisper Base β€” CTranslate2 (float16)

This is OpenAI's whisper-base converted to CTranslate2 format with float16 precision.

[!TIP] Also available in other precisions: `float32` Β· `bfloat16`

πŸ“‹ Details

Base modelopenai/whisper-base
FormatCTranslate2
Precisionfloat16
LanguageMultilingual
TaskAutomatic Speech Recognition

⚑ Quick Start

Install the inference library:

bash
pip install whisper-s2t-reborn

Transcribe an audio file:

python
import whisper_s2t

model = whisper_s2t.load_model(
    model_identifier="base",
    compute_type="float16",
    device="cuda",
)

result = model.transcribe_with_vad(
    ["audio.wav"],
    lang_codes=["en"],
    tasks=["transcribe"],
    initial_prompts=[None],
    batch_size=1,  # increase this to significantly improve throughput
)

for segment in result[0]:
    print(segment["text"])
[!NOTE] Models are auto-downloaded from this repo the first time you run inference. No manual download required.

See the [whisper-s2t-reborn](https://github.com/BBC-Esq/WhisperS2T-reborn) repository for the full list of available parameters.


πŸ“¦ All Available CTranslate2 Whisper Models

Every model below is hosted at huggingface.co/ctranslate2-4you and works with whisper-s2t-reborn.

🌍 Standard Whisper (Multilingual)

Model`float32``float16``bfloat16`
tinyLinkLinkLink
baseLinkLinkLink
smallLinkLinkLink
mediumLinkLinkLink
large-v3LinkLinkLink

πŸ‡ΊπŸ‡Έ Whisper English-Only

Model`float32``float16``bfloat16`
tiny.enLinkLinkLink
base.enLinkLinkLink
small.enLinkLinkLink
medium.enLinkLinkLink

⚑ Distilled Whisper

Model`float32``float16``bfloat16`
distil-small.enLinkLinkLink
distil-medium.enLinkLinkLink
distil-large-v3LinkLinkLink

πŸš€ Whisper Large-v3 Turbo

Model`float32``float16``bfloat16`
large-v3-turboLinkLinkLink

πŸ”— Links