Views
No views yet
| File | Encoder / mix | License |
|---|---|---|
tunejury.pt | CLAP+MERT, 4-dataset (primary) | CC-BY-NC 4.0 |
tunejury_muq_leave_MA.pt | MuQ-MuLan-large encoder-swap | CC-BY-NC 4.0 |
A1_clap_audio_only.pt | CLAP-audio-only | Apache-2.0 |
tunejury_leave_*.pt | leave-one / leave-two-out (fair-eval) | CC-BY-NC 4.0 |
ffmpeg and libsndfile):pip install git+https://github.com/yonghyunk1m/TuneJury1from huggingface_hub import hf_hub_download
2from tunejury.score import Scorer
3
4sc = Scorer.from_pretrained(hf_hub_download("TuneJury/tunejury", "tunejury.pt"))
5print(sc.score("clip.wav", "")) # "" -> 512-d zero text vector (paper §3/§4.2 empty-prompt)
6print(sc.score("clip.wav", "a calm lo-fi piano loop")) # a prompt uses the text branchA1_clap_audio_only head is released under Apache-2.0.1@misc{tunejury2026,
2 title = {TuneJury: An Open Metric for Improving Music Generation Preference Alignment},
3 author = {Kim, Yonghyun and Lee, Junwon and Xia, Haiwen and
4 Ma, Yinghao and Koo, Junghyun and Saito, Koichi and
5 Mitsufuji, Yuki and Donahue, Chris},
6 year = {2026},
7 eprint = {2606.17006},
8 archivePrefix = {arXiv},
9 primaryClass = {cs.SD},
10 url = {https://arxiv.org/abs/2606.17006},
11}