How to use NoYo25/BiodivBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="NoYo25/BiodivBERT")
# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("NoYo25/BiodivBERT") model = AutoModelForMaskedLM.from_pretrained("NoYo25/BiodivBERT")