nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_km_5_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_km_5_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_5_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_5_v1_qnli")This model is a fine-tuned version of Hartunka/bert_base_km_5_v1 on the GLUE QNLI 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 |
|---|---|---|---|---|
| 0.6587 | 1.0 | 410 | 0.6232 | 0.6531 |
| 0.5937 | 2.0 | 820 | 0.5632 | 0.7095 |
| 0.4625 | 3.0 | 1230 | 0.5546 | 0.7230 |
| 0.3374 | 4.0 | 1640 | 0.6059 | 0.7349 |
| 0.2281 | 5.0 | 2050 | 0.6953 | 0.7359 |
| 0.1522 | 6.0 | 2460 | 0.8389 | 0.7316 |
| 0.113 | 7.0 | 2870 | 0.9879 | 0.7254 |
| 0.0849 | 8.0 | 3280 | 1.0977 | 0.7205 |
Base model
Hartunka/bert_base_km_5_v1