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