GLiNER
PyTorch
urchade commited on
Commit
f59870d
1 Parent(s): a095183

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -1
README.md CHANGED
@@ -1,3 +1,78 @@
1
  ---
2
  license: cc-by-nc-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-2.0
3
+ ---
4
+ # Model Card for GLiNER-L
5
+
6
+ GLiNER is a Named Entity Recognition (NER) model capable of identifying any entity type using a bidirectional transformer encoder (BERT-like). It provides a practical alternative to traditional NER models, which are limited to predefined entities, and Large Language Models (LLMs) that, despite their flexibility, are costly and large for resource-constrained scenarios.
7
+
8
+ This version has been trained on the **Pile-NER** dataset
9
+
10
+ ## Links
11
+
12
+ * Paper: https://arxiv.org/abs/2311.08526
13
+ * Repository: https://github.com/urchade/GLiNER
14
+
15
+ ## Installation
16
+ To use this model, you must download the GLiNER repository and install its dependencies:
17
+ ```
18
+ !git clone https://github.com/urchade/GLiNER.git
19
+ %cd GLiNER
20
+ !pip install -r requirements.txt
21
+ ```
22
+
23
+ ## Usage
24
+ Once you've downloaded the GLiNER repository, you can import the GLiNER class from the `model` file. You can then load this model using `GLiNER.from_pretrained` and predict entities with `predict_entities`.
25
+
26
+ ```python
27
+ from model import GLiNER
28
+
29
+ model = GLiNER.from_pretrained("urchade/gliner_large")
30
+
31
+ text = """
32
+ Cristiano Ronaldo dos Santos Aveiro (Portuguese pronunciation: [kɾiʃˈtjɐnu ʁɔˈnaldu]; born 5 February 1985) is a Portuguese professional footballer who plays as a forward for and captains both Saudi Pro League club Al Nassr and the Portugal national team. Widely regarded as one of the greatest players of all time, Ronaldo has won five Ballon d'Or awards,[note 3] a record three UEFA Men's Player of the Year Awards, and four European Golden Shoes, the most by a European player. He has won 33 trophies in his career, including seven league titles, five UEFA Champions Leagues, the UEFA European Championship and the UEFA Nations League. Ronaldo holds the records for most appearances (183), goals (140) and assists (42) in the Champions League, goals in the European Championship (14), international goals (128) and international appearances (205). He is one of the few players to have made over 1,200 professional career appearances, the most by an outfield player, and has scored over 850 official senior career goals for club and country, making him the top goalscorer of all time.
33
+ """
34
+
35
+ labels = ["person", "award", "date", "competitions", "teams"]
36
+
37
+ entities = model.predict_entities(text, labels)
38
+
39
+ for entity in entities:
40
+ print(entity["text"], "=>", entity["label"])
41
+ ```
42
+
43
+ ```
44
+ Cristiano Ronaldo dos Santos Aveiro => person
45
+ 5 February 1985 => date
46
+ Al Nassr => teams
47
+ Portugal national team => teams
48
+ Ballon d'Or => award
49
+ UEFA Men's Player of the Year Awards => award
50
+ European Golden Shoes => award
51
+ UEFA Champions Leagues => competitions
52
+ UEFA European Championship => competitions
53
+ UEFA Nations League => competitions
54
+ Champions League => competitions
55
+ European Championship => competitions
56
+ ```
57
+
58
+ ## Named Entity Recognition benchmark result
59
+
60
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6317233cc92fd6fee317e030/Y5f7tK8lonGqeeO6L6bVI.png)
61
+
62
+ ## Model Authors
63
+ The model authors are:
64
+ * [Urchade Zaratiana](https://huggingface.co/urchade)
65
+ * Nadi Tomeh
66
+ * Pierre Holat
67
+ * Thierry Charnois
68
+
69
+ ## Citation
70
+ ```bibtex
71
+ @misc{zaratiana2023gliner,
72
+ title={GLiNER: Generalist Model for Named Entity Recognition using Bidirectional Transformer},
73
+ author={Urchade Zaratiana and Nadi Tomeh and Pierre Holat and Thierry Charnois},
74
+ year={2023},
75
+ eprint={2311.08526},
76
+ archivePrefix={arXiv},
77
+ primaryClass={cs.CL}
78
+ }