Views
No views yet
maubert:1from maubert import MauBERTFeat
2
3model = MauBERTFeat.from_pretrained("coml/maubert-feat")maubert repository if you are interested in further retraining
or fine-tuning, and the corresponding paper for our results.coml/maubert-quantisers.model.safetensors and config.json: HuggingFace Transformers checkpoint and config.coml/vox-communis-artifacts. The inventories are
required to reduce the phone head when extracting features from the phone projection layer:1from huggingface_hub import snapshot_download
2
3data_dir = snapshot_download("coml/vox-communis-artifacts", repo_type="dataset")
4# then pass f"{data_dir}/canonical_inventories.jsonl" as `inventory_file`1@inproceedings{ortiztandazo-etal-2026-maubert,
2 title = "{M}au{BERT}: Universal Phonetic Inductive Biases for Few-Shot Acoustic Units Discovery",
3 author = "Ortiz Tandazo, Angelo and
4 Khentout, Manel and
5 Benchekroun, Youssef and
6 Hueber, Thomas and
7 Dupoux, Emmanuel",
8 editor = "Liakata, Maria and
9 Moreira, Viviane P. and
10 Zhang, Jiajun and
11 Jurgens, David",
12 booktitle = "Proceedings of the 64th Annual Meeting of the {A}ssociation for {C}omputational {L}inguistics (Volume 1: Long Papers)",
13 month = jul,
14 year = "2026",
15 address = "San Diego, California, United States",
16 publisher = "Association for Computational Linguistics",
17 url = "https://aclanthology.org/2026.acl-long.24/",
18 doi = "10.18653/v1/2026.acl-long.24",
19 pages = "568--585",
20 ISBN = "979-8-89176-390-6",
21}