nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 497
How to use gokuls/tiny-bert-sst2-1_mobilebert_2_bert-only-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-only-distillation") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/tiny-bert-sst2-1_mobilebert_2_bert-only-distillation")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/tiny-bert-sst2-1_mobilebert_2_bert-only-distillation")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.2068 | 1.0 | 4210 | 1.5399 | 0.8291 |
| 0.22 | 2.0 | 8420 | 1.5395 | 0.8234 |
| 0.2171 | 3.0 | 12630 | 1.6631 | 0.8200 |
| 0.2434 | 4.0 | 16840 | 1.6152 | 0.8234 |