End of training 3a7d0a9
Christopher McMaster commited on
How to use austin/adr-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="austin/adr-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("austin/adr-ner")
model = AutoModelForTokenClassification.from_pretrained("austin/adr-ner")