nyu-mll/glue
Viewer • Updated • 1.49M • 443k • 524
How to use gokuls/distilbert_add_GLUE_Experiment_sst2_256 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/distilbert_add_GLUE_Experiment_sst2_256") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/distilbert_add_GLUE_Experiment_sst2_256")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/distilbert_add_GLUE_Experiment_sst2_256", device_map="auto")This model is a fine-tuned version of distilbert-base-uncased on the GLUE SST2 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.6877 | 1.0 | 264 | 0.6993 | 0.5092 |
| 0.5228 | 2.0 | 528 | 0.5464 | 0.7443 |
| 0.3483 | 3.0 | 792 | 0.5494 | 0.7775 |
| 0.2768 | 4.0 | 1056 | 0.7034 | 0.75 |
| 0.2496 | 5.0 | 1320 | 0.5917 | 0.7706 |
| 0.2287 | 6.0 | 1584 | 0.6191 | 0.7661 |
| 0.2145 | 7.0 | 1848 | 0.6363 | 0.7672 |