Transformers How to use InriaValda/cc_math_roberta_ep01 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="InriaValda/cc_math_roberta_ep01") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("InriaValda/cc_math_roberta_ep01")
model = AutoModelForSequenceClassification.from_pretrained("InriaValda/cc_math_roberta_ep01")