Serega6678 commited on
Commit
1115178
·
verified ·
1 Parent(s): 348c1f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -14,12 +14,12 @@ tags:
14
  - zero-shot
15
  ---
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
  * **4096 context window!** vs 512-token context in GLiNER. This allows processing a page at a time vs a few sentences!
21
- * 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.
22
- * NuZero family is trained on the **diverse dataset tailored for real-life use cases**
23
 
24
  <p align="center">
25
  <img src="zero_shot_performance_unzero_token_long.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/NuZero_token_long_context")
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 Token Long in comparison to GLiNER are:
20
  * **4096 context window!** vs 512-token context in GLiNER. This allows processing a page at a time vs a few sentences!
21
+ * The possibility to **detect entities that are longer than 12 tokens**, as NuNerZero, it operates on the token level rather than on the span level.
22
+ * NuZero family is trained on the **diverse dataset tailored for real-life use cases** - NuNER v2.0 dataset
23
 
24
  <p align="center">
25
  <img src="zero_shot_performance_unzero_token_long.png">
 
36
  ```python
37
  from gliner import GLiNER
38
 
39
+ model = GLiNER.from_pretrained("numind/NuNerZero_long_contex")
40
 
41
  # NuZero requires labels to be lower-cased!
42
  labels = ["person", "award", "date", "competitions", "teams"]