# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("jabo/GenderSequenceAnnotation-gbert-base")
model = AutoModelForTokenClassification.from_pretrained("jabo/GenderSequenceAnnotation-gbert-base")Quick Links
No model card
- Downloads last month
- 6
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="jabo/GenderSequenceAnnotation-gbert-base")