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