Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,9 @@ tags:
|
|
| 16 |
|
| 17 |
NuZero - 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
|
|
|
|
|
|
|
| 20 |
|
| 21 |
<p align="center">
|
| 22 |
<img src="zero_shot_performance_unzero_token.png">
|
|
@@ -33,7 +35,7 @@ The key difference between NuZero Token in comparison to GLiNER is the possibili
|
|
| 33 |
```python
|
| 34 |
from gliner import GLiNER
|
| 35 |
|
| 36 |
-
model = GLiNER.from_pretrained("numind/
|
| 37 |
|
| 38 |
# NuZero requires labels to be lower-cased!
|
| 39 |
labels = ["person", "award", "date", "competitions", "teams"]
|
|
|
|
| 16 |
|
| 17 |
NuZero - 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 NuZero Token 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 |
+
* NuZero family is trained on the **diverse dataset tailored for real-life use cases**
|
| 22 |
|
| 23 |
<p align="center">
|
| 24 |
<img src="zero_shot_performance_unzero_token.png">
|
|
|
|
| 35 |
```python
|
| 36 |
from gliner import GLiNER
|
| 37 |
|
| 38 |
+
model = GLiNER.from_pretrained("numind/NuZero_token")
|
| 39 |
|
| 40 |
# NuZero requires labels to be lower-cased!
|
| 41 |
labels = ["person", "award", "date", "competitions", "teams"]
|