Transformers How to use GLeite/Fernando-Anotantion with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="GLeite/Fernando-Anotantion") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("GLeite/Fernando-Anotantion")
model = AutoModelForTokenClassification.from_pretrained("GLeite/Fernando-Anotantion")