distil-large-v3.5

23.4K
88
license:mit
by
distil-whisper
Audio Model
OTHER
Fair
23K downloads
Community-tested
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Code Examples

bash
pip install --upgrade pip
pip install --upgrade transformers accelerate datasets[audio]
text
pip install flash-attn --no-build-isolation
text
git clone https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
make
bash
pip install --upgrade huggingface_hub
python
from huggingface_hub import hf_hub_download

hf_hub_download(repo_id='distil-whisper/distil-large-v3.5-ggml', filename='ggml-model.bin', local_dir='./models')
bash
pip install --upgrade pip
pip install --upgrade git+https://github.com/SYSTRAN/faster-whisper datasets[audio]
bash
pip install --upgrade pip
pip install --upgrade openai-whisper datasets[audio]
python
from datasets import load_dataset
from huggingface_hub import hf_hub_download
import whisper

model_path = hf_hub_download(repo_id="distil-whisper/distil-large-v3.5-openai", filename="model.bin")
model = whisper.load_model(model_path)

dataset = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
sample = dataset[0]["audio"]["path"]

result = model.transcribe(sample, language="en")
print(result["text"])
text
git clone https://github.com/huggingface/candle.git
text
cargo clean
text
cargo run --example whisper --release --features symphonia -- --model distil-large-v3

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.