nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_10_v2_mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_10_v2_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_10_v2_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_10_v2_mnli")This model is a fine-tuned version of Hartunka/distilbert_rand_10_v2 on the GLUE MNLI 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.9802 | 1.0 | 1534 | 0.9160 | 0.5625 |
| 0.8841 | 2.0 | 3068 | 0.8714 | 0.5993 |
| 0.8077 | 3.0 | 4602 | 0.8317 | 0.6295 |
| 0.7338 | 4.0 | 6136 | 0.8286 | 0.6380 |
| 0.6635 | 5.0 | 7670 | 0.8373 | 0.6466 |
| 0.5959 | 6.0 | 9204 | 0.8726 | 0.6497 |
| 0.5281 | 7.0 | 10738 | 0.9042 | 0.6498 |
| 0.4645 | 8.0 | 12272 | 1.0314 | 0.6377 |
| 0.406 | 9.0 | 13806 | 1.1399 | 0.6376 |
Base model
Hartunka/distilbert_rand_10_v2