nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use Hartunka/bert_base_rand_10_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_10_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v2_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v2_qqp")This model is a fine-tuned version of Hartunka/bert_base_rand_10_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.4757 | 1.0 | 1422 | 0.4355 | 0.7913 | 0.6756 | 0.7335 |
| 0.3701 | 2.0 | 2844 | 0.3871 | 0.8203 | 0.7589 | 0.7896 |
| 0.294 | 3.0 | 4266 | 0.3957 | 0.8242 | 0.7747 | 0.7995 |
| 0.2331 | 4.0 | 5688 | 0.4476 | 0.8343 | 0.7689 | 0.8016 |
| 0.1845 | 5.0 | 7110 | 0.4730 | 0.8396 | 0.7799 | 0.8098 |
| 0.1496 | 6.0 | 8532 | 0.4950 | 0.8421 | 0.7814 | 0.8118 |
| 0.1215 | 7.0 | 9954 | 0.6163 | 0.8422 | 0.7848 | 0.8135 |
Base model
Hartunka/bert_base_rand_10_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_10_v2_qqp")