Instructions to use JettChenT/crypto-impl-scratch-modernbert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
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") - Notebooks
- Google Colab
- Kaggle