nyu-mll/glue
Viewer • Updated • 1.49M • 481k • 501
How to use Hartunka/tiny_bert_rand_20_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_20_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qnli")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qnli")This model is a fine-tuned version of Hartunka/tiny_bert_rand_20_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.6624 | 1.0 | 410 | 0.6432 | 0.6293 |
| 0.6204 | 2.0 | 820 | 0.6398 | 0.6339 |
| 0.5434 | 3.0 | 1230 | 0.6636 | 0.6359 |
| 0.4486 | 4.0 | 1640 | 0.7345 | 0.6377 |
| 0.3598 | 5.0 | 2050 | 0.8188 | 0.6315 |
| 0.2863 | 6.0 | 2460 | 0.9331 | 0.6335 |
| 0.228 | 7.0 | 2870 | 1.1205 | 0.6299 |
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_qnli")