Instructions to use mbruton/spa_XLM-R with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mbruton/spa_XLM-R with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="mbruton/spa_XLM-R")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("mbruton/spa_XLM-R") model = AutoModelForTokenClassification.from_pretrained("mbruton/spa_XLM-R") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse filesupdated citation information
README.md
CHANGED
|
@@ -383,11 +383,22 @@ Per label type:
|
|
| 383 |
**BibTeX:**
|
| 384 |
|
| 385 |
```
|
| 386 |
-
@
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
|
| 391 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 392 |
}
|
|
|
|
| 393 |
```
|
|
|
|
| 383 |
**BibTeX:**
|
| 384 |
|
| 385 |
```
|
| 386 |
+
@inproceedings{bruton-beloucif-2023-bertie,
|
| 387 |
+
title = "{BERT}ie Bott{'}s Every Flavor Labels: A Tasty Introduction to Semantic Role Labeling for {G}alician",
|
| 388 |
+
author = "Bruton, Micaella and
|
| 389 |
+
Beloucif, Meriem",
|
| 390 |
+
editor = "Bouamor, Houda and
|
| 391 |
+
Pino, Juan and
|
| 392 |
+
Bali, Kalika",
|
| 393 |
+
booktitle = "Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing",
|
| 394 |
+
month = dec,
|
| 395 |
+
year = "2023",
|
| 396 |
+
address = "Singapore",
|
| 397 |
+
publisher = "Association for Computational Linguistics",
|
| 398 |
+
url = "https://aclanthology.org/2023.emnlp-main.671",
|
| 399 |
+
doi = "10.18653/v1/2023.emnlp-main.671",
|
| 400 |
+
pages = "10892--10902",
|
| 401 |
+
abstract = "In this paper, we leverage existing corpora, WordNet, and dependency parsing to build the first Galician dataset for training semantic role labeling systems in an effort to expand available NLP resources. Additionally, we introduce verb indexing, a new pre-processing method, which helps increase the performance when semantically parsing highly-complex sentences. We use transfer-learning to test both the resource and the verb indexing method. Our results show that the effects of verb indexing were amplified in scenarios where the model was both pre-trained and fine-tuned on datasets utilizing the method, but improvements are also noticeable when only used during fine-tuning. The best-performing Galician SRL model achieved an f1 score of 0.74, introducing a baseline for future Galician SRL systems. We also tested our method on Spanish where we achieved an f1 score of 0.83, outperforming the baseline set by the 2009 CoNLL Shared Task by 0.025 showing the merits of our verb indexing method for pre-processing.",
|
| 402 |
}
|
| 403 |
+
|
| 404 |
```
|