nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Sifal/bertGED with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Sifal/bertGED") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Sifal/bertGED")
model = AutoModelForSequenceClassification.from_pretrained("Sifal/bertGED")This model is a fine-tuned version of bert-large-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 | F1 | Precision | Recall |
|---|---|---|---|---|---|---|---|
| No log | 1.0 | 267 | 0.3860 | 0.8370 | 0.7999 | 0.8184 | 0.7876 |
| 0.3455 | 2.0 | 534 | 0.4490 | 0.8466 | 0.8065 | 0.8406 | 0.7876 |
Base model
google-bert/bert-large-uncased