Voxtral Mini 3B 2507
此 Soniqo 页面记录本地 speech-swift / speech-core 实现中的 Voxtral Mini 3B 2507。Hugging Face 包链接放在集成说明之后。
先进入站内页面
首页卡片和文档菜单先指向这里;源模型和权重包链接仍在本页提供。
概览
| 模型 | Voxtral Mini 3B 2507 |
|---|---|
| 用途 | High-accuracy multilingual offline speech-to-text |
| 后端 | Native MLX on Apple Silicon |
| 输出 | Plain-text transcription |
| 语言 | English, French, German, Spanish, Italian, Portuguese, Dutch, and Hindi |
| 许可证 | Apache-2.0 |
| 状态 | Published FP16, INT5, and INT8 bundles; INT5 is the default |
| 来源 | Mistral Voxtral Mini 3B 2507 |
| Swift 产品 | VoxtralASR |
| CLI / 运行时 | speech transcribe --engine voxtral |
使用
下面的片段对应当前 speech-swift 仓库暴露的 API 或命令。
# INT5 is the default.
speech transcribe recording.wav --engine voxtral
# Select another published precision and pass a language hint.
speech transcribe recording.wav --engine voxtral --model int8 --language fr
模型链接
实现说明
- The audio frontend resamples mono Float32 PCM to 16 kHz and packs up to 30 seconds of audio per request.
- INT5 is the default: on the validated English FLEURS run it used a 3.77 GiB bundle, 6,012 MiB physical footprint, and 0.0739 mean RTF.
- The decoder projects only the final prompt state through the 131,072-token language-model head, reducing quantized-model RTF without changing transcripts.
- MLX has no INT7 affine kernel; use INT8 as the supported higher-quality option.
- This is a non-streaming engine. Benchmark results cover English read speech, not conversational or speaker-heavy audio.