Instructions to use Arro94/nova-model-benchmark with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Arro94/nova-model-benchmark with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Arro94/nova-model-benchmark")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Arro94/nova-model-benchmark") model = AutoModelForSequenceClassification.from_pretrained("Arro94/nova-model-benchmark") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Arro94/nova-model-benchmark")
model = AutoModelForSequenceClassification.from_pretrained("Arro94/nova-model-benchmark")Quick Links
Scores (avg. weighted)
- Accuracy: 0.9007633587786259
- Precision: 0.9008606422369183
- Recall: 0.9007633587786259
- F1: 0.9007595035560719
Hyperparams
- Max Seq Len: 45
- Batch Size: 16
- Learning Rate: 2e-5
- Epochs: 5
- Warmup Steps: 147
- Weight Decay: 0.01
- Save/Eval Strat: epoch
- Downloads last month
- 2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Arro94/nova-model-benchmark")