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