Instructions to use BSC-LT/MrBERT-ca with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BSC-LT/MrBERT-ca with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="BSC-LT/MrBERT-ca")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("BSC-LT/MrBERT-ca") model = AutoModelForMaskedLM.from_pretrained("BSC-LT/MrBERT-ca") - Notebooks
- Google Colab
- Kaggle
fix citation
#1
by ilacunza - opened
README.md
CHANGED
|
@@ -181,14 +181,11 @@ The Barcelona Supercomputing Center, as the owner and creator of the model, shal
|
|
| 181 |
### Citation
|
| 182 |
|
| 183 |
```
|
| 184 |
-
@
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
archivePrefix={arXiv},
|
| 190 |
-
primaryClass={cs.CL},
|
| 191 |
-
url={https://arxiv.org/abs/2602.21379},
|
| 192 |
}
|
| 193 |
```
|
| 194 |
|
|
|
|
| 181 |
### Citation
|
| 182 |
|
| 183 |
```
|
| 184 |
+
@article{tamayo2026mrbert,
|
| 185 |
+
title={MrBERT: Modern Multilingual Encoders via Vocabulary, Domain, and Dimensional Adaptation},
|
| 186 |
+
author={Tamayo, Daniel and Lacunza, I{\~n}aki and Rivera-Hidalgo, Paula and Da Dalt, Severino and Aula-Blasco, Javier and Gonzalez-Agirre, Aitor and Villegas, Marta},
|
| 187 |
+
journal={arXiv preprint arXiv:2602.21379},
|
| 188 |
+
year={2026}
|
|
|
|
|
|
|
|
|
|
| 189 |
}
|
| 190 |
```
|
| 191 |
|