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
*.onnx file
#1
by LoneRanger44 - opened
Hi, great work! I wonder if you can export this model to ONNX format, which will increase speed and throughput for deployment.
LoneRanger44 changed discussion status to closed