nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Hartunka/tiny_bert_rand_20_v1_mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_20_v1_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_mnli")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_mnli")This model is a fine-tuned version of Hartunka/tiny_bert_rand_20_v1 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.9987 | 1.0 | 1534 | 0.9482 | 0.5350 |
| 0.9153 | 2.0 | 3068 | 0.8893 | 0.5831 |
| 0.8571 | 3.0 | 4602 | 0.8752 | 0.5966 |
| 0.8033 | 4.0 | 6136 | 0.8718 | 0.6011 |
| 0.7482 | 5.0 | 7670 | 0.8747 | 0.6078 |
| 0.6947 | 6.0 | 9204 | 0.9125 | 0.6129 |
| 0.6416 | 7.0 | 10738 | 0.9405 | 0.6155 |
| 0.5894 | 8.0 | 12272 | 1.0253 | 0.6039 |
| 0.5403 | 9.0 | 13806 | 1.1121 | 0.6019 |
Base model
Hartunka/tiny_bert_rand_20_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_20_v1_mnli")