Fill-Mask
Transformers
PyTorch
TensorFlow
JAX
Safetensors
Dutch
roberta
Dutch
Flemish
RoBERTa
RobBERT
BERT
Instructions to use pdelobelle/robbert-v2-dutch-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pdelobelle/robbert-v2-dutch-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="pdelobelle/robbert-v2-dutch-base")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("pdelobelle/robbert-v2-dutch-base") model = AutoModelForMaskedLM.from_pretrained("pdelobelle/robbert-v2-dutch-base", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Error
#3
by brirrer - opened
Getting this error:
No mask_token (
Could you provide more content? Having a code sample or your input might help, since the error seems to indicate that you didn't provide a mask token (in a pipeline?).

