How to use JettChenT/crypto-impl-scratch-modernbert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="JettChenT/crypto-impl-scratch-modernbert")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("JettChenT/crypto-impl-scratch-modernbert") model = AutoModelForSequenceClassification.from_pretrained("JettChenT/crypto-impl-scratch-modernbert")