guillecade22 commited on
Commit
8ea3564
·
verified ·
1 Parent(s): a3b32fa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
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", load_tokenizer=True).to(device)
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, Guillem Cadevall Ferreres, Pol Gerdt Basullas, Raul Quijada Ferrero, Francesc Tarres Ruiz}, year = {2025},
 
101
  archivePrefix = {arXiv},
102
- url = {URL_of_the_paper} (PENDING)
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
  ```