nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use Hartunka/tiny_bert_rand_20_v1_qqp 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_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_qqp")This model is a fine-tuned version of Hartunka/tiny_bert_rand_20_v1 on the GLUE QQP 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 | F1 | Combined Score |
|---|---|---|---|---|---|---|
| 0.4821 | 1.0 | 1422 | 0.4381 | 0.7932 | 0.6989 | 0.7460 |
| 0.3837 | 2.0 | 2844 | 0.4237 | 0.8095 | 0.7141 | 0.7618 |
| 0.3187 | 3.0 | 4266 | 0.4170 | 0.8180 | 0.7436 | 0.7808 |
| 0.2638 | 4.0 | 5688 | 0.4383 | 0.8244 | 0.7517 | 0.7880 |
| 0.2202 | 5.0 | 7110 | 0.4657 | 0.8278 | 0.7575 | 0.7926 |
| 0.1852 | 6.0 | 8532 | 0.5005 | 0.8259 | 0.7641 | 0.7950 |
| 0.1567 | 7.0 | 9954 | 0.5467 | 0.8237 | 0.7665 | 0.7951 |
| 0.1357 | 8.0 | 11376 | 0.5970 | 0.8317 | 0.7599 | 0.7958 |
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_qqp")