nyu-mll/glue
Viewer • Updated • 1.49M • 429k • 523
How to use gokuls/Glue_distilbert_new with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/Glue_distilbert_new") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/Glue_distilbert_new")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/Glue_distilbert_new", device_map="auto")This model is a fine-tuned version of distilbert-base-uncased on the glue 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 | F1 | Combined Score |
|---|---|---|---|---|---|---|
| 0.6415 | 1.0 | 4 | 0.6363 | 0.6838 | 0.8122 | 0.7480 |
| 0.6292 | 2.0 | 8 | 0.6101 | 0.6838 | 0.8122 | 0.7480 |
| 0.6244 | 3.0 | 12 | 0.6047 | 0.6838 | 0.8122 | 0.7480 |
| 0.6075 | 4.0 | 16 | 0.6153 | 0.6397 | 0.7361 | 0.6879 |