aps/super_glue
Viewer • Updated • 196k • 192k • 188
How to use SG1123/boolq_model_v2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="SG1123/boolq_model_v2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("SG1123/boolq_model_v2")
model = AutoModelForSequenceClassification.from_pretrained("SG1123/boolq_model_v2")This model is a fine-tuned version of roberta-base on the super_glue 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 |
|---|---|---|---|
| 0.6242 | 1.0 | 590 | 0.5122 |
| 0.4715 | 2.0 | 1180 | 0.4762 |
| 0.3823 | 3.0 | 1770 | 0.5141 |
| 0.3196 | 4.0 | 2360 | 0.5855 |
| 0.2455 | 5.0 | 2950 | 0.5937 |