# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("pborchert/bert-ic")
model = AutoModelForMaskedLM.from_pretrained("pborchert/bert-ic")Quick Links
README.md exists but content is empty.
- Downloads last month
- 10
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="pborchert/bert-ic")