nyu-mll/glue
Viewer • Updated • 1.49M • 448k • 525
How to use n3bbb/distilbert-base-uncased-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="n3bbb/distilbert-base-uncased-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("n3bbb/distilbert-base-uncased-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("n3bbb/distilbert-base-uncased-finetuned-cola", device_map="auto")This model is a fine-tuned version of distilbert-base-uncased on the 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 | Matthews Correlation |
|---|---|---|---|---|
| 0.5242 | 1.0 | 535 | 0.5338 | 0.4221 |
| 0.3484 | 2.0 | 1070 | 0.4976 | 0.4779 |
| 0.2417 | 3.0 | 1605 | 0.5211 | 0.5452 |
| 0.1765 | 4.0 | 2140 | 0.7580 | 0.5282 |
| 0.1269 | 5.0 | 2675 | 0.8001 | 0.5515 |