Views
No views yet
allow_patterns filtering, instead of spreading across three separate Microsoft HF repos plus GitHub.vibevoice-models/
├── tts-1.5b/ ← microsoft/VibeVoice-1.5B (5.4 GB, 64K ctx, ~90 min max output)
│ ├── config.json
│ ├── preprocessor_config.json
│ ├── model-0000{1..3}-of-00003.safetensors
│ └── …
├── tts-large/ ← aoi-ot/VibeVoice-Large (17.6 GB, 32K ctx, ~45 min max output, premium 7B/9B backbone)
│ ├── config.json
│ ├── preprocessor_config.json
│ ├── configuration.json
│ ├── model-0000{1..10}-of-00010.safetensors
│ └── …
├── asr-7b/ ← microsoft/VibeVoice-ASR (17.4 GB, legacy/research variant)
│ ├── config.json
│ ├── model-0000{1..8}-of-00008.safetensors
│ └── …
└── realtime-0.5b/ ← microsoft/VibeVoice-Realtime-0.5B (2.0 GB + 100 MB voices)
├── config.json
├── preprocessor_config.json
├── model.safetensors
└── voices/ ← 25 baked-in voice presets (KV-cache .pt files, NOT model weights)
├── en-Carter_man.pt
├── en-Frank_man.pt
├── … (23 more, grouped by language: de/en/fr/in/it/jp/kr/nl/pl/pt/sp)tts-large/microsoft/VibeVoice-Large with full MIT license, then removed the repo on 2025-09-05 along with the demo scripts (same RAI cleanup that removed modeling_vibevoice_inference.py). The MIT license remains in force on the released weights — this mirror sources from aoi-ot/VibeVoice-Large, a community preserve uploaded on 2025-09-04 (one day before Microsoft's pull) that retains the full original release.tts-1.5b/:Speaker N: script format, same voice-cloning workflow (pass per-speaker reference clips)tts-large/ to NF4 via bitsandbytes at runtime (~8 GB working set, well-tested across the HF ecosystem). No separate pre-quantized variant is needed — the runtime path produces identical quality to a pre-quantized mirror, with fewer compatibility issues across transformers upgrades.realtime-0.5b/voices/*.pttorch.save'd). They are not flat tensor maps so they cannot be converted to safetensors — they must be loaded with torch.load(..., weights_only=False). Each is 2–7 MB. Microsoft does not publish the acoustic tokenizer that would let users generate new ones, so this set of 25 is the complete preset library.asr-7b/transformers>=4.51.3,<5.0.0. Microsoft also publishes a microsoft/VibeVoice-ASR-HF repo with the cleaner apply_transcription_request API, but that variant requires transformers>=5.3.0 which is not yet compatible with the rest of MAESTRO's model stack.| Variant | Task | Languages | Max length | Notes |
|---|---|---|---|---|
tts-1.5b | Text → speech | EN, ZH (multi-speaker) | ~90 min | Up to 4 speakers via Speaker N: script tags + voice cloning from per-speaker reference clips |
tts-large | Text → speech | EN, ZH (multi-speaker) | ~45 min | Same workflow as 1.5B, premium 7B/9B backbone, higher prosody quality. Auto-quantizes to NF4 at runtime on smaller cards (~8 GB working set). |
asr-7b | Speech → text | 50+, code-switching | ~60 min | Diarization, timestamps, hotword support via prompt |
realtime-0.5b | Streaming text → speech | 11 languages (preset-only) | unbounded | ~300 ms first-chunk latency, single speaker |
VibeVoice is limited to research-purpose use exploring highly realistic audio dialogue generation.The following are explicitly out of scope:
- Voice impersonation without explicit, recorded consent
- Disinformation or impersonation
- Real-time or low-latency voice conversion for live deep-fakes
- Generation in unsupported languages (non-English, non-Chinese)
- Generation of background ambience, Foley, or music
- Circumventing the watermark or audible disclaimer
We do not recommend using VibeVoice in commercial or real-world applications without further testing and development. This model is intended for research and development purposes only.
| Component | Source | License |
|---|---|---|
| Model weights — 1.5B / ASR / Realtime | microsoft/VibeVoice-1.5B, microsoft/VibeVoice-ASR, microsoft/VibeVoice-Realtime-0.5B | MIT |
| Model weights — 7B Large | aoi-ot/VibeVoice-Large — community preserve of the now-removed microsoft/VibeVoice-Large (uploaded 2025-09-04, one day before Microsoft's pull) | MIT (preserved) |
| Voice presets | microsoft/VibeVoice (GitHub) | MIT |
| Inference code (TTS variants + ASR + Realtime) | vibevoice-community/VibeVoice — Microsoft removed modeling_vibevoice_inference.py from the original repo on 2025-09-05 | MIT |
1@misc{peng2025vibevoicetechnicalreport,
2 title = {VibeVoice Technical Report},
3 author = {Zhiliang Peng and Jianwei Yu and Wenhui Wang and Yaoyao Chang and
4 Yutao Sun and Li Dong and Yi Zhu and Weijiang Xu and Hangbo Bao and
5 Zehua Wang and Shaohan Huang and Yan Xia and Furu Wei},
6 year = {2025},
7 eprint = {2508.19205},
8 archivePrefix = {arXiv},
9 primaryClass = {cs.CL},
10 url = {https://arxiv.org/abs/2508.19205}
11}