Views
No views yet
.
├── config.json # top-level AF3 config (PCLM fields included)
├── llm/ # frozen + DPO-tuned Qwen2 LLM
├── sound_tower/ # AF-Whisper audio encoder
├── sound_mm_projector/ # final-layer audio→LLM projector
├── sound_mid_mm_projector_{5,15,25,30}/ # intermediate-layer projectors (PCLM)
├── sound_pclm/ # BERT-small prompt encoder + gate MLP
└── tokenizer files (vocab.json, merges.txt, …)transformers — AF3 + PCLM requires the
custom modeling code shipped in the release repo.1git clone https://github.com/ihp-lab/VoxParadox
2cd VoxParadox/af3/audio-flamingo
3bash environment_setup.sh af3
4conda activate af31bash scripts/eval_voxparadox.sh \
2 IHP-Lab/AF3_PCLM_DPO \
3 /path/to/voxparadox.json \
4 /path/to/audio_root \
5 runs/eval/af3_pclm_dpoeval.py:python eval.py --predictions runs/eval/af3_pclm_dpo/predictions.jsonlconfig.json
(expose_layers=[5, 15, 25, 30], use_sound_pclm=true).| Resource | Link |
|---|---|
| Paper (arXiv) | https://arxiv.org/abs/2605.27772 |
| Project page | https://voxparadox.github.io/ |
| Code | https://github.com/ihp-lab/VoxParadox |
| Benchmark | https://huggingface.co/datasets/IHP-Lab/VoxParadox |
| Sibling model (Qwen2-Audio) | https://huggingface.co/IHP-Lab/Qwen2-Audio_PCLM_DPO |
1@inproceedings{pang2026voxparadox,
2 title = {Do Audio LLMs Listen or Read? Analyzing and Mitigating Paralinguistic Failures with VoxParadox},
3 author = {Pang, Jiacheng and Chaubey, Ashutosh and Soleymani, Mohammad},
4 booktitle = {Proceedings of the International Conference on Machine Learning (ICML)},
5 year = {2026}
6}LICENSE.nvidia/audio-flamingo-3) carries the NVIDIA non-commercial license
terms, which continue to apply to the inherited weights.