Commit
·
0fc2bce
1
Parent(s):
9ec253c
Update README.md
Browse files
README.md
CHANGED
@@ -5,6 +5,7 @@
|
|
5 |
|
6 |
[**READ THE FULL PAPER**](https://arxiv.org/abs/2111.09453)
|
7 |
[Github Repository](https://github.com/pysentimiento/robertuito)
|
|
|
8 |
|
9 |
*RoBERTuito* is a pre-trained language model for user-generated content in Spanish, trained following RoBERTa guidelines on 500 million tweets. *RoBERTuito* comes in 3 flavors: cased, uncased, and uncased+deaccented.
|
10 |
|
@@ -66,17 +67,26 @@ tokenizer.tokenize(preprocessed_text)
|
|
66 |
|
67 |
We are working on integrating this preprocessing step into a Tokenizer within `transformers` library
|
68 |
|
|
|
|
|
69 |
## Citation
|
70 |
|
71 |
If you use *RoBERTuito*, please cite our paper:
|
72 |
|
73 |
```bibtex
|
74 |
-
@
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
}
|
82 |
```
|
|
|
5 |
|
6 |
[**READ THE FULL PAPER**](https://arxiv.org/abs/2111.09453)
|
7 |
[Github Repository](https://github.com/pysentimiento/robertuito)
|
8 |
+
[![Test it in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1WcubR0kbqT289XupSnN5-STe7HafyKpf#scrollTo=SF-n4IdjnoYk)
|
9 |
|
10 |
*RoBERTuito* is a pre-trained language model for user-generated content in Spanish, trained following RoBERTa guidelines on 500 million tweets. *RoBERTuito* comes in 3 flavors: cased, uncased, and uncased+deaccented.
|
11 |
|
|
|
67 |
|
68 |
We are working on integrating this preprocessing step into a Tokenizer within `transformers` library
|
69 |
|
70 |
+
Check a text classification example in this notebook: [![Test it in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1WcubR0kbqT289XupSnN5-STe7HafyKpf#scrollTo=SF-n4IdjnoYk)
|
71 |
+
|
72 |
## Citation
|
73 |
|
74 |
If you use *RoBERTuito*, please cite our paper:
|
75 |
|
76 |
```bibtex
|
77 |
+
@inproceedings{perez-etal-2022-robertuito,
|
78 |
+
title = "{R}o{BERT}uito: a pre-trained language model for social media text in {S}panish",
|
79 |
+
author = "P{\'e}rez, Juan Manuel and
|
80 |
+
Furman, Dami{\'a}n Ariel and
|
81 |
+
Alonso Alemany, Laura and
|
82 |
+
Luque, Franco M.",
|
83 |
+
booktitle = "Proceedings of the Thirteenth Language Resources and Evaluation Conference",
|
84 |
+
month = jun,
|
85 |
+
year = "2022",
|
86 |
+
address = "Marseille, France",
|
87 |
+
publisher = "European Language Resources Association",
|
88 |
+
url = "https://aclanthology.org/2022.lrec-1.785",
|
89 |
+
pages = "7235--7243",
|
90 |
+
abstract = "Since BERT appeared, Transformer language models and transfer learning have become state-of-the-art for natural language processing tasks. Recently, some works geared towards pre-training specially-crafted models for particular domains, such as scientific papers, medical documents, user-generated texts, among others. These domain-specific models have been shown to improve performance significantly in most tasks; however, for languages other than English, such models are not widely available. In this work, we present RoBERTuito, a pre-trained language model for user-generated text in Spanish, trained on over 500 million tweets. Experiments on a benchmark of tasks involving user-generated text showed that RoBERTuito outperformed other pre-trained language models in Spanish. In addition to this, our model has some cross-lingual abilities, achieving top results for English-Spanish tasks of the Linguistic Code-Switching Evaluation benchmark (LinCE) and also competitive performance against monolingual models in English Twitter tasks. To facilitate further research, we make RoBERTuito publicly available at the HuggingFace model hub together with the dataset used to pre-train it.",
|
91 |
}
|
92 |
```
|