# Load model directly
from transformers import AutoModelForMaskedLM
model = AutoModelForMaskedLM.from_pretrained("ltg/bnc-bert-span-document", dtype="auto")Quick Links
No model card
- Downloads last month
- 7
# Load model directly
from transformers import AutoModelForMaskedLM
model = AutoModelForMaskedLM.from_pretrained("ltg/bnc-bert-span-document", dtype="auto")No model card
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="ltg/bnc-bert-span-document")