nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 497
How to use jysh1023/tiny-bert-sst2-distilled with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jysh1023/tiny-bert-sst2-distilled") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jysh1023/tiny-bert-sst2-distilled")
model = AutoModelForSequenceClassification.from_pretrained("jysh1023/tiny-bert-sst2-distilled")This model was trained from scratch 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.1125 | 1.0 | 3 | 0.6731 | 0.8177 |
| 0.0984 | 2.0 | 6 | 0.6756 | 0.8188 |
| 0.1273 | 3.0 | 9 | 0.6754 | 0.8177 |
| 0.0758 | 4.0 | 12 | 0.6751 | 0.8188 |
| 0.1188 | 5.0 | 15 | 0.6754 | 0.8188 |
| 0.0936 | 6.0 | 18 | 0.6749 | 0.8200 |
| 0.0781 | 7.0 | 21 | 0.6748 | 0.8200 |