nyu-mll/glue
Viewer • Updated • 1.49M • 452k • 504
How to use Arlethh/leth with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Arlethh/leth") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Arlethh/leth")
model = AutoModelForSequenceClassification.from_pretrained("Arlethh/leth")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Arlethh/leth")
model = AutoModelForSequenceClassification.from_pretrained("Arlethh/leth")This model is a fine-tuned version of distilroberta-base 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 | F1 |
|---|---|---|---|---|---|
| 0.5009 | 1.09 | 500 | 0.5683 | 0.8113 | 0.8693 |
| 0.3177 | 2.18 | 1000 | 0.6024 | 0.8505 | 0.8872 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Arlethh/leth")