nyu-mll/glue
Viewer • Updated • 1.49M • 484k • 500
How to use Hartunka/bert_base_rand_5_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_5_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_5_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_5_v1_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_5_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_5_v1_qqp")This model is a fine-tuned version of Hartunka/bert_base_rand_5_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.4751 | 1.0 | 1422 | 0.4341 | 0.7920 | 0.6797 | 0.7359 |
| 0.3657 | 2.0 | 2844 | 0.3895 | 0.8175 | 0.7661 | 0.7918 |
| 0.2876 | 3.0 | 4266 | 0.4063 | 0.8242 | 0.7753 | 0.7998 |
| 0.2268 | 4.0 | 5688 | 0.4114 | 0.8354 | 0.7774 | 0.8064 |
| 0.1778 | 5.0 | 7110 | 0.4330 | 0.8397 | 0.7851 | 0.8124 |
| 0.1429 | 6.0 | 8532 | 0.5096 | 0.8441 | 0.7814 | 0.8128 |
| 0.1145 | 7.0 | 9954 | 0.5547 | 0.8408 | 0.7851 | 0.8129 |
Base model
Hartunka/bert_base_rand_5_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_5_v1_qqp")