nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_km_100_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_100_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_100_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_100_v1_qnli")This model is a fine-tuned version of Hartunka/bert_base_km_100_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.6678 | 1.0 | 410 | 0.6424 | 0.6237 |
| 0.6254 | 2.0 | 820 | 0.6278 | 0.6460 |
| 0.5484 | 3.0 | 1230 | 0.6570 | 0.6269 |
| 0.415 | 4.0 | 1640 | 0.7420 | 0.6293 |
| 0.2781 | 5.0 | 2050 | 0.8780 | 0.6308 |
| 0.1878 | 6.0 | 2460 | 1.0763 | 0.6359 |
| 0.1384 | 7.0 | 2870 | 1.1823 | 0.6374 |
Base model
Hartunka/bert_base_km_100_v1