Token Classification
Transformers
Safetensors
English
roberta
feature-extraction
entity-recognition
foundation-model
RoBERTa
generic
Instructions to use numind/NuNER-v2.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuNER-v2.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="numind/NuNER-v2.0")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("numind/NuNER-v2.0") model = AutoModel.from_pretrained("numind/NuNER-v2.0") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,7 @@ k=X means that as training data, we took only X examples for each class, trained
|
|
| 40 |
| RoBERTa-base | 24.5 | 44.7 | 58.1 | 65.4
|
| 41 |
| RoBERTa-base + NER-BERT pre-training | 32.3 | 50.9 | 61.9 | 67.6 |
|
| 42 |
| NuNER v1.0 | 39.4 | 59.6 | 67.8 | 71.5 |
|
| 43 |
-
| NuNER v2.0 | **43.6** | **
|
| 44 |
|
| 45 |
NuNER v1.0 has similar performance to 7B LLMs (70 times bigger than NuNER v1.0) created specifically for the NER task. Thus NuNER v2.0 should be even better than the 7b LLM.
|
| 46 |
|
|
|
|
| 40 |
| RoBERTa-base | 24.5 | 44.7 | 58.1 | 65.4
|
| 41 |
| RoBERTa-base + NER-BERT pre-training | 32.3 | 50.9 | 61.9 | 67.6 |
|
| 42 |
| NuNER v1.0 | 39.4 | 59.6 | 67.8 | 71.5 |
|
| 43 |
+
| NuNER v2.0 | **43.6** | **61.0** | **68.2** | **72.0** |
|
| 44 |
|
| 45 |
NuNER v1.0 has similar performance to 7B LLMs (70 times bigger than NuNER v1.0) created specifically for the NER task. Thus NuNER v2.0 should be even better than the 7b LLM.
|
| 46 |
|