nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 499
How to use Hartunka/tiny_bert_rand_5_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_5_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v1_qnli")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v1_qnli")This model is a fine-tuned version of Hartunka/tiny_bert_rand_5_v1 on the GLUE QNLI 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.6605 | 1.0 | 410 | 0.6416 | 0.6244 |
| 0.6264 | 2.0 | 820 | 0.6340 | 0.6394 |
| 0.5715 | 3.0 | 1230 | 0.6345 | 0.6354 |
| 0.4897 | 4.0 | 1640 | 0.6882 | 0.6401 |
| 0.4121 | 5.0 | 2050 | 0.7538 | 0.6363 |
| 0.3443 | 6.0 | 2460 | 0.8461 | 0.6387 |
| 0.2845 | 7.0 | 2870 | 1.0166 | 0.6286 |
Base model
Hartunka/tiny_bert_rand_5_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_5_v1_qnli")