nyu-mll/glue
Viewer • Updated • 1.49M • 452k • 504
How to use Hartunka/distilbert_rand_20_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v2_mrpc")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v2_mrpc")This model is a fine-tuned version of Hartunka/distilbert_rand_20_v2 on the GLUE MRPC 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 | F1 | Combined Score |
|---|---|---|---|---|---|---|
| 0.6287 | 1.0 | 15 | 0.6148 | 0.6740 | 0.7809 | 0.7275 |
| 0.579 | 2.0 | 30 | 0.5914 | 0.6814 | 0.7890 | 0.7352 |
| 0.5138 | 3.0 | 45 | 0.6203 | 0.6961 | 0.8013 | 0.7487 |
| 0.4172 | 4.0 | 60 | 0.7218 | 0.6765 | 0.78 | 0.7282 |
| 0.2715 | 5.0 | 75 | 1.0093 | 0.6127 | 0.6890 | 0.6509 |
| 0.1628 | 6.0 | 90 | 1.1156 | 0.6103 | 0.6936 | 0.6520 |
| 0.0908 | 7.0 | 105 | 1.4071 | 0.6495 | 0.7522 | 0.7008 |
Base model
Hartunka/distilbert_rand_20_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v2_mrpc")