Update README.md 2197dd8
Christopher McMaster commited on
How to use austin/Austin-MeDeBERTa with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="austin/Austin-MeDeBERTa") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("austin/Austin-MeDeBERTa")
model = AutoModelForMaskedLM.from_pretrained("austin/Austin-MeDeBERTa")