# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("ramonzaca/roberto")
model = AutoModelForMaskedLM.from_pretrained("ramonzaca/roberto")Quick Links
# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("ramonzaca/roberto")
model = AutoModelForMaskedLM.from_pretrained("ramonzaca/roberto")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="ramonzaca/roberto")