# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("InriaValda/cc_math_bert_ep10")
model = AutoModelForMaskedLM.from_pretrained("InriaValda/cc_math_bert_ep10")Quick Links
README.md exists but content is empty.
- Downloads last month
- 12
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="InriaValda/cc_math_bert_ep10")