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-isolationtext
git clone https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
makebash
pip install --upgrade huggingface_hubpython
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.gittext
cargo cleantext
cargo run --example whisper --release --features symphonia -- --model distil-large-v3Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.