How to use approach0/dpr-math-aware-albert-220 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="approach0/dpr-math-aware-albert-220")
# Load model directly from transformers import AutoTokenizer, DprEncoder_ALBERT tokenizer = AutoTokenizer.from_pretrained("approach0/dpr-math-aware-albert-220") model = DprEncoder_ALBERT.from_pretrained("approach0/dpr-math-aware-albert-220")