Token Classification
Transformers
PyTorch
Latin
xlm-roberta
named-entity-recognition
early-modern-latin
neo-latin
Instructions to use mhvdr/neolatiner-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mhvdr/neolatiner-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="mhvdr/neolatiner-model")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("mhvdr/neolatiner-model") model = AutoModelForTokenClassification.from_pretrained("mhvdr/neolatiner-model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Adding `safetensors` variant of this model
#1 opened 2 days ago
by
SFconvertbot