Token Classification
Transformers
Safetensors
English
roberta
feature-extraction
entity-recognition
foundation-model
RoBERTa
generic
Instructions to use numind/NuNER-v1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuNER-v1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="numind/NuNER-v1.0")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("numind/NuNER-v1.0") model = AutoModel.from_pretrained("numind/NuNER-v1.0", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -46,6 +46,7 @@ k=X means that as training data for this evaluation, we took only X examples for
|
|
| 46 |
| RoBERTa-base + NER-BERT pre-training | 32.3 | 50.9 | 61.9 | 67.6 |
|
| 47 |
| NuNER v0.1 | 34.3 | 54.6 | 64.0 | 68.7 |
|
| 48 |
| NuNER v1.0 | 39.4 | 59.6 | 67.8 | 71.5 |
|
|
|
|
| 49 |
|
| 50 |
NuNER v1.0 has similar performance to 7B LLMs (70 times bigger than NuNER v1.0) created specifically for the NER task.
|
| 51 |
|
|
|
|
| 46 |
| RoBERTa-base + NER-BERT pre-training | 32.3 | 50.9 | 61.9 | 67.6 |
|
| 47 |
| NuNER v0.1 | 34.3 | 54.6 | 64.0 | 68.7 |
|
| 48 |
| NuNER v1.0 | 39.4 | 59.6 | 67.8 | 71.5 |
|
| 49 |
+
| **NuNER v2.0** | **43.6** | **61.0** | **68.2** | **72.0** |
|
| 50 |
|
| 51 |
NuNER v1.0 has similar performance to 7B LLMs (70 times bigger than NuNER v1.0) created specifically for the NER task.
|
| 52 |
|