Model reference · open weights

Voila-Tokenizer

Available as managed deployment Audio maitrix-org Audio→audio 1 variants 618 dl/mo

Voila-Tokenizer is an open-weight audio or speech model from maitrix-org. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released bymaitrix-org
TypeAudio & music
TaskAudio→audio
Parameters (lead)60M
Runs withtransformers
Released2025-02-26
Popularity618 downloads / month
LicenceOpen weights

About

What Voila-Tokenizer is

💜 Project Page &nbsp&nbsp | &nbsp&nbsp 🖥️ GitHub &nbsp&nbsp | &nbsp&nbsp🤗 Hugging Face&nbsp&nbsp | &nbsp&nbsp 📑 Paper &nbsp&nbsp | &nbsp&nbsp 🌐 Online Demo &nbsp&nbsp| &nbsp&nbsp 🏠Maitrix.org

Voila is a new family of large voice-language foundation models aiming to lift human-AI interaction experiences to the next level. Breaking away from the constraints of traditional voice AI systems—high latency, loss of vocal nuances, and mechanical responses—Voila employs an innovative end-to-end model design and a novel hierarchical Transformer architecture. This approach enables real-time, autonomous, and rich voice interactions, with latency as low as 195 ms, surpassing average human response times. Combining advanced voice and language modeling, Voila offers customizable, persona-driven engagements and excels in a range of audio tasks from ASR and TTS to speech translation across six languages. With the online web demo, Voila invites you to explore a transformative, natural dialogue experience between human and AI.

Read the full model card

✨ Highlights

  • ⭐ High-fidelity, low-latency, real-time streaming audio processing
  • ⭐ Effective integration of voice and language modeling capabilities
  • ⭐ Millions of pre-built and custom voices, fast voice switching during conversation
  • ⭐ Unified model for various audio tasks

🎥 Video Demo

🔥 Latest News!!

  • April 28, 2025: 👋 We've released the inference code and model weights of Voila.

⚙️ Foundation Models

ModelDescriptionDownload Link
Voila-baseVoila base modelhttps://huggingface.co/maitrix-org/Voila-base
Voila-ChatEnd-to-end audio chat modelhttps://huggingface.co/maitrix-org/Voila-chat
Voila-Autonomous (preview)Full-duplex audio chat modelhttps://huggingface.co/maitrix-org/Voila-autonomous-preview
Voila-Audio-alphaEmpowering LLM with raw audio inputhttps://huggingface.co/maitrix-org/Voila-audio-alpha
Voila-TokenizerAudio tokenizerhttps://huggingface.co/maitrix-org/Voila-Tokenizer

Usage

CLI demo

for model_name in "maitrix-org/Voila-audio-alpha" "maitrix-org/Voila-base" "maitrix-org/Voila-chat"; do
    # Text chat
    python infer.py \
        --model-name ${model_name} \
	    --instruction "" \
	    --input-text "Hello" \
	    --task-type chat_tito
    # Voice chat
    python infer.py \
        --model-name ${model_name} \
	    --instruction "" \
	    --input-audio "examples/test1.mp3" \
	    --task-type chat_aiao
done

# Autonomous mode
python infer.py \
    --model-name "maitrix-org/Voila-autonomous-preview" \
	--instruction "" \
	--input-audio "examples/test_autonomous1.mp3" \
	--task-type chat_aiao_auto

Gradio demo

python gradio_demo.py

For more information, please refer to the code repository.

📁 Datasets

We publish the following two datasets: Voila Benchmark and Voila Voice Library. Voila-Benchmark is a novel speech evaluation benchmark, while Voila Voice Library provides millions of pre-built and customizable voices.

DatasetDescriptionDownload Link
Voila BenchmarkEvaluation of Voila Benchmarkhttps://huggingface.co/datasets/maitrix-org/Voila-Benchmark
Voila Voice LibraryMillons of pre-build voiceshttps://huggingface.co/datasets/maitrix-org/Voila-million-voice

📊 Benchmark

1. Voila Benchmark

We introduce a novel speech evaluation benchmark called the VoilaBenchmark. The Voila Benchmark is constructed by sampling from five widely used language model evaluation datasets: MMLU, MATH, OpenAI HumanEval, NQ-Open, and GSM8k. We compare our results with SpeechGPT and Moshi.

ModelVoila Benchmark
SpeechGPT13.29
Moshi11.45
Voila30.56

(higher is better)

For detailed scores of Voila Benchmark on each specific domain, please refer to our paper (Section 5.1 "Evaluation of Voila Benchmark").

2. Evaluation of ASR

As Voila supports multiple tasks, including Automatic Speech Recognition (ASR), Text-to-Speech(TTS), and spoken question answering, we also evaluate the performance of ASR and TTS. For ASR, we assess performance on the LibriSpeech test-clean dataset, using Word Error Rate (WER) as our metric. Voila attains a word error rate (WER) of 4.8%, outperforming the 5.7% reported by Moshi. In scenarios where both models utilize LibriSpeech training data, Voila achieves an impressive WER of 2.7%.

ModelLibriSpeech test-clean (WER)
Whisper large v22.7
Whisper large v32.2
FastConformer3.6
VoxtLM2.7
Moshi5.7
Voila (w/o LibriSpeech train split)4.8
Voila (with LibriSpeech train split)2.7

(lower is better)

3. Evaluation of TTS

For TTS, we follow the evaluation metrics proposed in Vall-E, which involves transcribing the generated audio using HuBERT-Large. Voila once again leads with a WER of 3.2% (and 2.8% when using LibriSpeech training data).

ModelLibriSpeech test-clean (WER)
YourTTS7.7
Vall-E5.9
Moshi4.7
Voila (w/o LibriSpeech train split)3.2
Voila (with LibriSpeech train split)2.8

(lower is better)

📝 Citation

If you find our work helpful, please cite us.

@article{voila2025,
  author    = {Yemin Shi, Yu Shu, Siwei Dong, Guangyi Liu, Jaward Sesay, Jingwen Li, Zhiting Hu},
  title     = {Voila: Voice-Language Foundation Models for Real-Time Autonomous Interaction and Voice Roleplay},
  eprint={2505.02707},
  archivePrefix={arXiv},
  primaryClass={cs.CL},
  year      = {2025}
}

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys voila-tokenizer for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (voila-tokenizer below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -F model="voila-tokenizer" -F file=@audio.mp3

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms