nyu-mll/glue
Viewer • Updated • 1.49M • 428k • 523
How to use Hamine/distilbert-base-uncased-finetuned-mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hamine/distilbert-base-uncased-finetuned-mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hamine/distilbert-base-uncased-finetuned-mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hamine/distilbert-base-uncased-finetuned-mnli", 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 | Accuracy |
|---|---|---|---|---|
| 0.5142 | 1.0 | 24544 | 0.4922 | 0.8075 |
| 0.4089 | 2.0 | 49088 | 0.4865 | 0.8194 |
| 0.2936 | 3.0 | 73632 | 0.5486 | 0.8244 |