Serega6678
commited on
Commit
•
42919dd
1
Parent(s):
7e47b29
Update README.md
Browse files
README.md
CHANGED
@@ -14,12 +14,12 @@ tags:
|
|
14 |
- zero-shot
|
15 |
---
|
16 |
|
17 |
-
|
18 |
|
19 |
-
The key differences between
|
20 |
* The possibility to **detect entities that are longer than 12 tokens**, as NuZero Token operates on the token level rather than on the span level.
|
21 |
* a more powerful version of GLiNER-large-v2.1, surpassing it by **+3.1% on average**
|
22 |
-
*
|
23 |
|
24 |
<p align="center">
|
25 |
<img src="zero_shot_performance_unzero_token.png">
|
@@ -36,7 +36,7 @@ The key differences between NuZero Token Long in comparison to GLiNER are:
|
|
36 |
```python
|
37 |
from gliner import GLiNER
|
38 |
|
39 |
-
model = GLiNER.from_pretrained("numind/
|
40 |
|
41 |
# NuZero requires labels to be lower-cased!
|
42 |
labels = ["person", "award", "date", "competitions", "teams"]
|
|
|
14 |
- zero-shot
|
15 |
---
|
16 |
|
17 |
+
NuNerZero - is the family of Zero-Shot Entity Recognition models inspired by [GLiNER](https://huggingface.co/papers/2311.08526) and built with insights we gathered throughout our work on [NuNER](https://huggingface.co/collections/numind/nuner-token-classification-and-ner-backbones-65e1f6e14639e2a465af823b).
|
18 |
|
19 |
+
The key differences between NuNerZero Long in comparison to GLiNER are:
|
20 |
* The possibility to **detect entities that are longer than 12 tokens**, as NuZero Token operates on the token level rather than on the span level.
|
21 |
* a more powerful version of GLiNER-large-v2.1, surpassing it by **+3.1% on average**
|
22 |
+
* NuNerZero family is trained on the **diverse dataset tailored for real-life use cases** built upon the NuNER v2.0 dataset
|
23 |
|
24 |
<p align="center">
|
25 |
<img src="zero_shot_performance_unzero_token.png">
|
|
|
36 |
```python
|
37 |
from gliner import GLiNER
|
38 |
|
39 |
+
model = GLiNER.from_pretrained("numind/NuNerZero")
|
40 |
|
41 |
# NuZero requires labels to be lower-cased!
|
42 |
labels = ["person", "award", "date", "competitions", "teams"]
|