nyu-mll/glue
Viewer • Updated • 1.49M • 443k • 524
How to use gokuls/tiny-bert-sst2-1_mobilebert_2_bert_3_gold_labels-distillation with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/tiny-bert-sst2-1_mobilebert_2_bert_3_gold_labels-distillation") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/tiny-bert-sst2-1_mobilebert_2_bert_3_gold_labels-distillation")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/tiny-bert-sst2-1_mobilebert_2_bert_3_gold_labels-distillation", device_map="auto")This model is a fine-tuned version of google/bert_uncased_L-2_H-128_A-2 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 |
|---|---|---|---|---|
| 0.1041 | 1.0 | 4210 | 0.9350 | 0.8188 |
| 0.1166 | 2.0 | 8420 | 0.9179 | 0.8188 |
| 0.1127 | 3.0 | 12630 | 0.9083 | 0.8142 |
| 0.1163 | 4.0 | 16840 | 0.9087 | 0.8165 |