Token Classification
Transformers
PyTorch
TensorBoard
xlm-roberta
Generated from Trainer
Eval Results (legacy)
Instructions to use cfilt/HiNER-collapsed-xlm-roberta-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cfilt/HiNER-collapsed-xlm-roberta-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="cfilt/HiNER-collapsed-xlm-roberta-large")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("cfilt/HiNER-collapsed-xlm-roberta-large") model = AutoModelForTokenClassification.from_pretrained("cfilt/HiNER-collapsed-xlm-roberta-large") - Notebooks
- Google Colab
- Kaggle
Adding `safetensors` variant of this model
#1 opened almost 3 years ago
by
SFconvertbot