nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_10_v2_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_10_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_10_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_10_v2_qqp")This model is a fine-tuned version of Hartunka/distilbert_km_10_v2 on the GLUE QQP 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.4781 | 1.0 | 1422 | 0.4353 | 0.7922 | 0.6916 | 0.7419 |
| 0.3737 | 2.0 | 2844 | 0.4022 | 0.8152 | 0.7424 | 0.7788 |
| 0.2966 | 3.0 | 4266 | 0.4022 | 0.8235 | 0.7638 | 0.7937 |
| 0.2309 | 4.0 | 5688 | 0.4382 | 0.8306 | 0.7563 | 0.7935 |
| 0.1801 | 5.0 | 7110 | 0.4994 | 0.8319 | 0.7657 | 0.7988 |
| 0.1423 | 6.0 | 8532 | 0.5064 | 0.8275 | 0.7721 | 0.7998 |
| 0.1143 | 7.0 | 9954 | 0.5898 | 0.8289 | 0.7747 | 0.8018 |
Base model
Hartunka/distilbert_km_10_v2