update model card README.md f004d37
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")