nyu-mll/glue
Viewer • Updated • 1.49M • 850k • 1.06k
How to use gokulsrinivasagan/bert_tiny_lda_50_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokulsrinivasagan/bert_tiny_lda_50_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokulsrinivasagan/bert_tiny_lda_50_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("gokulsrinivasagan/bert_tiny_lda_50_v1_qqp", device_map="auto")This model is a fine-tuned version of gokulsrinivasagan/bert_tiny_lda_50_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.4989 | 1.0 | 1422 | 0.4520 | 0.7819 | 0.6719 | 0.7269 |
| 0.403 | 2.0 | 2844 | 0.3968 | 0.8146 | 0.7527 | 0.7836 |
| 0.3459 | 3.0 | 4266 | 0.3820 | 0.8250 | 0.7711 | 0.7980 |
| 0.2995 | 4.0 | 5688 | 0.3891 | 0.8334 | 0.7644 | 0.7989 |
| 0.2618 | 5.0 | 7110 | 0.4069 | 0.8376 | 0.7723 | 0.8050 |
| 0.2277 | 6.0 | 8532 | 0.3923 | 0.8411 | 0.7899 | 0.8155 |
| 0.1997 | 7.0 | 9954 | 0.4387 | 0.8435 | 0.7863 | 0.8149 |
| 0.1755 | 8.0 | 11376 | 0.4638 | 0.8448 | 0.7911 | 0.8180 |
Base model
gokulsrinivasagan/bert_tiny_lda_50_v1