nyu-mll/glue
Viewer • Updated • 1.49M • 419k • 522
How to use nbhimte/tiny-bert-mnli-distilled with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="nbhimte/tiny-bert-mnli-distilled") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("nbhimte/tiny-bert-mnli-distilled")
model = AutoModelForSequenceClassification.from_pretrained("nbhimte/tiny-bert-mnli-distilled", device_map="auto")It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 score | Precision score | Metric recall |
|---|---|---|---|---|---|---|---|
| 1.4475 | 1.0 | 614 | 1.4296 | 0.4521 | 0.4070 | 0.5621 | 0.4521 |
| 1.3354 | 2.0 | 1228 | 1.4320 | 0.4805 | 0.4579 | 0.5276 | 0.4805 |
| 1.2244 | 3.0 | 1842 | 1.4786 | 0.5699 | 0.5602 | 0.5865 | 0.5699 |
| 1.1416 | 4.0 | 2456 | 1.5018 | 0.5819 | 0.5782 | 0.6036 | 0.5819 |