nyu-mll/glue
Viewer • Updated • 1.49M • 450k • 504
How to use davanstrien/distilbert-base-uncased-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="davanstrien/distilbert-base-uncased-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("davanstrien/distilbert-base-uncased-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("davanstrien/distilbert-base-uncased-finetuned-cola")This model is a fine-tuned version of distilbert-base-uncased on the glue dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Matthews Correlation |
|---|---|---|---|---|
| No log | 0.1 | 54 | 0.6065 | 0.0 |
Base model
distilbert/distilbert-base-uncased