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