Views
No views yet
.base build of
openai/whisper-base.en,
OpenAI's 74M-parameter Whisper speech-recognition model (English-only),
for fast local transcription on Apple Silicon.| File | Precision | Size |
|---|---|---|
whisper-base.en-F16.base | float16 | 149 MB |
whisper-base.en-Q8.base | 8-bit linears, f16 embeddings/conv/norms | 106 MB |
whisper-base.en-Q4.base | 4-bit linears, f16 embeddings/conv/norms | 86 MB |
1curl -LsSf https://basecompute.co/install.sh | sh
2basert serve --model whisper-base.en-F16.basePOST /v1/audio/transcriptions (multipart or JSON) returns json, text,
srt, vtt, or verbose_json (with per-segment avg_logprob /
no_speech_prob / compression_ratio / temperature and the detected
language), with optional SSE streaming. Supported
request fields: language (or "auto" to detect), prompt
(initial prompt / vocabulary bias). Or transcribe directly
from the CLI:basert-transcribe whisper-base.en-F16.base audio.wavlanguage is fixed to en and task=translate is rejected.