nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Hartunka/tiny_bert_rand_10_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_10_v1_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_10_v1_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_10_v1_mnli")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_10_v1_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_10_v1_mnli")This model is a fine-tuned version of Hartunka/tiny_bert_rand_10_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.9909 | 1.0 | 1534 | 0.9389 | 0.5459 |
| 0.9076 | 2.0 | 3068 | 0.8835 | 0.5857 |
| 0.8477 | 3.0 | 4602 | 0.8486 | 0.6207 |
| 0.7883 | 4.0 | 6136 | 0.8233 | 0.6344 |
| 0.7357 | 5.0 | 7670 | 0.8027 | 0.6485 |
| 0.6888 | 6.0 | 9204 | 0.8329 | 0.6493 |
| 0.6483 | 7.0 | 10738 | 0.8231 | 0.6502 |
| 0.6075 | 8.0 | 12272 | 0.8673 | 0.6528 |
| 0.5713 | 9.0 | 13806 | 0.8915 | 0.6456 |
| 0.5346 | 10.0 | 15340 | 0.9181 | 0.6486 |
Base model
Hartunka/tiny_bert_rand_10_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_10_v1_mnli")