GLiNER
PyTorch
urchade commited on
Commit
d43ac73
1 Parent(s): 1ddd76d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -1
README.md CHANGED
@@ -1,3 +1,79 @@
1
  ---
2
  license: cc-by-nc-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-2.0
3
+ ---
4
+
5
+ # Model Card for GLiNER-M
6
+
7
+ 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.
8
+
9
+ This version has been trained on the **Pile-NER** dataset
10
+
11
+ ## Links
12
+
13
+ * Paper: https://arxiv.org/abs/2311.08526
14
+ * Repository: https://github.com/urchade/GLiNER
15
+
16
+ ## Installation
17
+ To use this model, you must download the GLiNER repository and install its dependencies:
18
+ ```
19
+ !git clone https://github.com/urchade/GLiNER.git
20
+ %cd GLiNER
21
+ !pip install -r requirements.txt
22
+ ```
23
+
24
+ ## Usage
25
+ 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`.
26
+
27
+ ```python
28
+ from model import GLiNER
29
+
30
+ model = GLiNER.from_pretrained("urchade/gliner_medium")
31
+
32
+ text = """
33
+ 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.
34
+ """
35
+
36
+ labels = ["person", "award", "date", "competitions", "teams"]
37
+
38
+ entities = model.predict_entities(text, labels)
39
+
40
+ for entity in entities:
41
+ print(entity["text"], "=>", entity["label"])
42
+ ```
43
+
44
+ ```
45
+ Cristiano Ronaldo dos Santos Aveiro => person
46
+ 5 February 1985 => date
47
+ Al Nassr => teams
48
+ Portugal national team => teams
49
+ Ballon d'Or => award
50
+ UEFA Men's Player of the Year Awards => award
51
+ European Golden Shoes => award
52
+ UEFA Champions Leagues => competitions
53
+ UEFA European Championship => competitions
54
+ UEFA Nations League => competitions
55
+ Champions League => competitions
56
+ European Championship => competitions
57
+ ```
58
+
59
+ ## Named Entity Recognition benchmark result
60
+
61
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6317233cc92fd6fee317e030/Y5f7tK8lonGqeeO6L6bVI.png)
62
+
63
+ ## Model Authors
64
+ The model authors are:
65
+ * [Urchade Zaratiana](https://huggingface.co/urchade)
66
+ * Nadi Tomeh
67
+ * Pierre Holat
68
+ * Thierry Charnois
69
+
70
+ ## Citation
71
+ ```bibtex
72
+ @misc{zaratiana2023gliner,
73
+ title={GLiNER: Generalist Model for Named Entity Recognition using Bidirectional Transformer},
74
+ author={Urchade Zaratiana and Nadi Tomeh and Pierre Holat and Thierry Charnois},
75
+ year={2023},
76
+ eprint={2311.08526},
77
+ archivePrefix={arXiv},
78
+ primaryClass={cs.CL}
79
+ }