Update README.md
Browse files
README.md
CHANGED
|
@@ -34,7 +34,7 @@ import torch
|
|
| 34 |
from gliner import GLiNER
|
| 35 |
|
| 36 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
| 37 |
-
model = GLiNER.from_pretrained("Ugiat/NERCat"
|
| 38 |
|
| 39 |
text = "La Universitat de Barcelona és una de les institucions educatives més importants de Catalunya."
|
| 40 |
|
|
@@ -97,8 +97,9 @@ The dataset included 13,732 named entity instances across eight categories:
|
|
| 97 |
```
|
| 98 |
@misc{article_id,
|
| 99 |
title = {NERCat: Fine-Tuning for Enhanced Named Entity Recognition in Catalan},
|
| 100 |
-
author = {Marc Bardeli Gámez, Marc Serrano Sanz,
|
|
|
|
| 101 |
archivePrefix = {arXiv},
|
| 102 |
-
url = {URL_of_the_paper}
|
| 103 |
}
|
| 104 |
```
|
|
|
|
| 34 |
from gliner import GLiNER
|
| 35 |
|
| 36 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
| 37 |
+
model = GLiNER.from_pretrained("Ugiat/NERCat").to(device)
|
| 38 |
|
| 39 |
text = "La Universitat de Barcelona és una de les institucions educatives més importants de Catalunya."
|
| 40 |
|
|
|
|
| 97 |
```
|
| 98 |
@misc{article_id,
|
| 99 |
title = {NERCat: Fine-Tuning for Enhanced Named Entity Recognition in Catalan},
|
| 100 |
+
author = {Guillem Cadevall Ferreres, Marc Bardeli Gámez, Marc Serrano Sanz, Pol Gerdt Basuillas, Francesc Tarres Ruiz, Raul Quijada Ferrero},
|
| 101 |
+
year = {2025},
|
| 102 |
archivePrefix = {arXiv},
|
| 103 |
+
url = {URL_of_the_paper}
|
| 104 |
}
|
| 105 |
```
|