nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_km_50_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_50_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_50_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_50_v1_qnli")This model is a fine-tuned version of Hartunka/bert_base_km_50_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.6671 | 1.0 | 410 | 0.6413 | 0.6209 |
| 0.628 | 2.0 | 820 | 0.6344 | 0.6414 |
| 0.5603 | 3.0 | 1230 | 0.6817 | 0.6354 |
| 0.4472 | 4.0 | 1640 | 0.7238 | 0.6390 |
| 0.3245 | 5.0 | 2050 | 0.8553 | 0.6315 |
| 0.2263 | 6.0 | 2460 | 0.9603 | 0.6407 |
| 0.1643 | 7.0 | 2870 | 1.2036 | 0.6280 |
Base model
Hartunka/bert_base_km_50_v1