Adds Liu Model 4be859e
Thomas Dopierre commited on
How to use tdopierre/ProtAugment-LM-Clinic150 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="tdopierre/ProtAugment-LM-Clinic150") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("tdopierre/ProtAugment-LM-Clinic150")
model = AutoModelForMaskedLM.from_pretrained("tdopierre/ProtAugment-LM-Clinic150")