Training in progress, step 500 b75a281
Luca Zunino commited on
How to use lucazed/LernnaviBERT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="lucazed/LernnaviBERT") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("lucazed/LernnaviBERT")
model = AutoModelForMaskedLM.from_pretrained("lucazed/LernnaviBERT")