CoolFace
Modelpublic

ctranslate2-4you/whisper-tiny.en-ct2-float32

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

πŸ—£οΈ Whisper Tiny.en β€” CTranslate2 (float32)

This is OpenAI's whisper-tiny.en converted to CTranslate2 format with float32 precision.

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

πŸ“‹ Details

Base modelopenai/whisper-tiny.en
FormatCTranslate2
Precisionfloat32
LanguageEnglish
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="tiny.en",
    compute_type="float32",
    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