nyu-mll/glue
Viewer • Updated • 1.49M • 481k • 501
How to use ducatte/distilbert-base-uncased-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ducatte/distilbert-base-uncased-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("ducatte/distilbert-base-uncased-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("ducatte/distilbert-base-uncased-finetuned-cola")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.5098 | 1.0 | 2138 | 0.6569 | 0.3562 |
| 0.4689 | 2.0 | 4276 | 0.6456 | 0.5238 |
| 0.3279 | 3.0 | 6414 | 0.8929 | 0.5047 |
| 0.2835 | 4.0 | 8552 | 0.9614 | 0.5251 |
| 0.226 | 5.0 | 10690 | 1.0043 | 0.5408 |