nyu-mll/glue
Viewer • Updated • 1.49M • 445k • 524
How to use gokuls/distilbert_sa_GLUE_Experiment_data_aug_sst2_256 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/distilbert_sa_GLUE_Experiment_data_aug_sst2_256") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/distilbert_sa_GLUE_Experiment_data_aug_sst2_256")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/distilbert_sa_GLUE_Experiment_data_aug_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 | Accuracy | Validation Loss |
|---|---|---|---|---|
| 0.3537 | 1.0 | 4374 | 0.7913 | 0.5204 |
| 0.2638 | 2.0 | 8748 | 0.6801 | 0.7649 |
| 0.2156 | 3.0 | 13122 | 0.6808 | 0.7752 |
| 0.1812 | 4.0 | 17496 | 0.7841 | 0.7718 |
| 0.1563 | 5.0 | 21870 | 0.8941 | 0.7683 |
| 0.1369 | 6.0 | 26244 | 1.0494 | 0.7569 |