nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 497
How to use gokuls/tiny-bert-sst2-1_mobilebert-2_bert-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-distillation") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/tiny-bert-sst2-1_mobilebert-2_bert-distillation")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/tiny-bert-sst2-1_mobilebert-2_bert-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.4113 | 1.0 | 4210 | 1.0697 | 0.8360 |
| 0.3159 | 2.0 | 8420 | 1.1354 | 0.8291 |
| 0.3078 | 3.0 | 12630 | 1.1843 | 0.8154 |
| 0.2707 | 4.0 | 16840 | 1.2397 | 0.8165 |