initial commit 7b44145 verified
Ethan Z commited on
How to use appleroll/coberta-base with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="appleroll/coberta-base") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("appleroll/coberta-base", dtype="auto")