nyu-mll/glue
Viewer • Updated • 1.49M • 796k • 1.02k
How to use gokulsrinivasagan/tinybert_train_mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokulsrinivasagan/tinybert_train_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokulsrinivasagan/tinybert_train_mnli")
model = AutoModelForSequenceClassification.from_pretrained("gokulsrinivasagan/tinybert_train_mnli", device_map="auto")This model is a fine-tuned version of gokulsrinivasagan/tinybert_train on the GLUE MNLI dataset. 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 |
|---|---|---|---|---|
| 0.9798 | 1.0 | 1534 | 0.9307 | 0.5483 |
| 0.8967 | 2.0 | 3068 | 0.8715 | 0.5982 |
| 0.8351 | 3.0 | 4602 | 0.8519 | 0.6139 |
| 0.7725 | 4.0 | 6136 | 0.8256 | 0.6406 |
| 0.7126 | 5.0 | 7670 | 0.8201 | 0.6469 |
| 0.6584 | 6.0 | 9204 | 0.8321 | 0.6535 |
| 0.6069 | 7.0 | 10738 | 0.8595 | 0.6535 |
| 0.558 | 8.0 | 12272 | 0.9184 | 0.6464 |
| 0.5139 | 9.0 | 13806 | 0.9939 | 0.6461 |
| 0.4698 | 10.0 | 15340 | 1.0392 | 0.6389 |
Base model
distilbert/distilbert-base-uncased