Add model weights 7812282
Fausto Milletari commited on
How to use biohub/ESMC-300M with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="biohub/ESMC-300M") # Load model directly
from transformers import AutoModelForMaskedLM
model = AutoModelForMaskedLM.from_pretrained("biohub/ESMC-300M", dtype="auto")