Views
No views yet
| Split | SRCC |
|---|---|
| Validation | 0.6746 |
| Test (Final Ensemble) | 0.632 |
1from tmu_xacle.model.xacle_model import XACLEModel
2
3# Load pre-trained model from Hugging Face
4model = XACLEModel.from_pretrained(
5 "Atotti/xacle-tmu-2026",
6 beats_checkpoint="checkpoints/BEATs_iter3_plus_AS2M.pt", # Path to downloaded BEATs checkpoint
7 device="cuda",
8)
9
10# Predict alignment score
11# The model predicts a score representing the semantic alignment
12score = model.predict("audio.wav", "A dog barking in the park")
13print(f"Alignment Score: {score:.2f}") [SCORE] token is passed to an MLP head to regress the final alignment score.1@article{tsutsumi2026tmu,
2 title={The TMU System for the XACLE Challenge: Training Large Audio Language Models with CLAP Pseudo-Labels},
3 author={Tsutsumi, Ayuto and Tanaka, Kohei and Shiota, Sayaka},
4 journal={arXiv preprint arXiv:2602.00604},
5 year={2026}
6}