Views
No views yet
Evaluating and Rewarding LALMs for Expressive Role-Play TTS via Mean Continuation Log-Probability Yong Ren*, Jingbei Li*, Haiyang Sun, Yujie Chen, Cheng Yi, Yechang Huang, Hao Gu, Ye Bai, Xuerui Yang ICML 2026
MCLP = (1/N) * Σ log P(token_i | gt_prefix, token_1, ..., token_{i-1})1# Clone the inference code
2git clone https://github.com/y-ren16/MCLP.git
3cd MCLP
4
5# Compute MCLP scores
6python compute_contination_score.py \
7 --model-path /path/to/MCLP-Score \
8 --audio-dir ./outputs/roleplay_tts \
9 --gt-jsonl /path/to/WenetSpeech-RP/eval/eval_w_history.jsonl \
10 --gt-dir /path/to/WenetSpeech-RP/eval/audio \
11 --save-json mclp_results.jsonMCLP (Mean avg_log_prob): -4.636xxx
Mean avg_prob: 0.xxxxx
Mean avg_rank: xx.xxpip install transformers==4.49.0 torchaudio librosa onnxruntime s3tokenizer diffusers hyperpyyaml numpy| Resource | Link |
|---|---|
| 📑 Paper | arXiv:2601.22661 |
| 💻 Inference Code | github.com/y-ren16/MCLP |
| 📊 WenetSpeech-RP Dataset | huggingface.co/datasets/y-ren16/WenetSpeech-RP |
| 🗣️ MCLP-RPTTS Model | huggingface.co/y-ren16/MCLP-RPTTS |
1@inproceedings{ren2026mclp,
2 title={Evaluating and Rewarding LALMs for Expressive Role-Play TTS via Mean Continuation Log-Probability},
3 author={Ren, Yong and Li, Jingbei and Sun, Haiyang and Chen, Yujie and Yi, Cheng and Huang, Yechang and Gu, Hao and Bai, Ye and Yang, Xuerui},
4 booktitle={Proceedings of the 43rd International Conference on Machine Learning (ICML)},
5 year={2026}
6}