nyu-mll/glue
Viewer • Updated • 1.49M • 468k • 504
How to use Hartunka/bert_base_rand_10_v1_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_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v1_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v1_qqp")This model is a fine-tuned version of Hartunka/bert_base_rand_10_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.4757 | 1.0 | 1422 | 0.4247 | 0.7962 | 0.7029 | 0.7495 |
| 0.3697 | 2.0 | 2844 | 0.3917 | 0.8153 | 0.7582 | 0.7868 |
| 0.2939 | 3.0 | 4266 | 0.3889 | 0.8288 | 0.7734 | 0.8011 |
| 0.2329 | 4.0 | 5688 | 0.4264 | 0.8376 | 0.7722 | 0.8049 |
| 0.1847 | 5.0 | 7110 | 0.4509 | 0.8404 | 0.7807 | 0.8106 |
| 0.1492 | 6.0 | 8532 | 0.4776 | 0.8399 | 0.7801 | 0.8100 |
| 0.122 | 7.0 | 9954 | 0.5778 | 0.8429 | 0.7829 | 0.8129 |
| 0.1009 | 8.0 | 11376 | 0.5849 | 0.8363 | 0.7872 | 0.8117 |
Base model
Hartunka/bert_base_rand_10_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_10_v1_qqp")