Changed the whole model to bert base uncased from camel c17669a
Harsh Makwana commited on
How to use harshmakwana/dummy-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="harshmakwana/dummy-model") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("harshmakwana/dummy-model")
model = AutoModelForMaskedLM.from_pretrained("harshmakwana/dummy-model")