nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_50_v2_mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_50_v2_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_50_v2_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_50_v2_mnli")This model is a fine-tuned version of Hartunka/tiny_bert_rand_50_v2 on the GLUE MNLI 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.9887 | 1.0 | 1534 | 0.9252 | 0.5563 |
| 0.9027 | 2.0 | 3068 | 0.8903 | 0.5816 |
| 0.8517 | 3.0 | 4602 | 0.8664 | 0.6066 |
| 0.8069 | 4.0 | 6136 | 0.8640 | 0.6094 |
| 0.7659 | 5.0 | 7670 | 0.8618 | 0.6141 |
| 0.7247 | 6.0 | 9204 | 0.8869 | 0.6190 |
| 0.6864 | 7.0 | 10738 | 0.8766 | 0.6244 |
| 0.6468 | 8.0 | 12272 | 0.9365 | 0.6184 |
| 0.6076 | 9.0 | 13806 | 0.9490 | 0.6211 |
| 0.5709 | 10.0 | 15340 | 0.9911 | 0.6203 |
Base model
Hartunka/tiny_bert_rand_50_v2