aps/super_glue
Viewer • Updated • 196k • 192k • 188
How to use SG1123/boolq_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="SG1123/boolq_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("SG1123/boolq_model")
model = AutoModelForSequenceClassification.from_pretrained("SG1123/boolq_model")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("SG1123/boolq_model")
model = AutoModelForSequenceClassification.from_pretrained("SG1123/boolq_model")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.6143 | 1.0 | 1179 | 0.5687 |
| 0.4884 | 2.0 | 2358 | 0.4964 |
| 0.3786 | 3.0 | 3537 | 0.5867 |
| 0.3378 | 4.0 | 4716 | 0.8469 |
| 0.3052 | 5.0 | 5895 | 0.9634 |
Base model
FacebookAI/roberta-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="SG1123/boolq_model")