First version of the your-model-name model and tokenizer. c6ee591
sarthak34 commited on
How to use isarth/test-story with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="isarth/test-story") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("isarth/test-story")
model = AutoModelForMaskedLM.from_pretrained("isarth/test-story")