nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use Hartunka/bert_base_rand_100_v2_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v2_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v2_qqp")This model is a fine-tuned version of Hartunka/bert_base_rand_100_v2 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.4754 | 1.0 | 1422 | 0.4311 | 0.7961 | 0.6978 | 0.7470 |
| 0.3723 | 2.0 | 2844 | 0.3863 | 0.8179 | 0.7555 | 0.7867 |
| 0.2962 | 3.0 | 4266 | 0.3932 | 0.8259 | 0.7750 | 0.8005 |
| 0.2334 | 4.0 | 5688 | 0.4347 | 0.8354 | 0.7769 | 0.8061 |
| 0.1823 | 5.0 | 7110 | 0.4591 | 0.8375 | 0.7768 | 0.8072 |
| 0.1443 | 6.0 | 8532 | 0.4977 | 0.8385 | 0.7738 | 0.8061 |
| 0.1156 | 7.0 | 9954 | 0.5663 | 0.8370 | 0.7841 | 0.8105 |
Base model
Hartunka/bert_base_rand_100_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v2_qqp")