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