nyu-mll/glue
Viewer • Updated • 1.49M • 489k • 500
How to use JeremiahZ/bert-base-uncased-qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="JeremiahZ/bert-base-uncased-qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("JeremiahZ/bert-base-uncased-qqp")
model = AutoModelForSequenceClassification.from_pretrained("JeremiahZ/bert-base-uncased-qqp")This model is a fine-tuned version of bert-base-uncased 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.2511 | 1.0 | 11371 | 0.2469 | 0.8969 | 0.8641 | 0.8805 |
| 0.1763 | 2.0 | 22742 | 0.2379 | 0.9071 | 0.8769 | 0.8920 |
| 0.1221 | 3.0 | 34113 | 0.2829 | 0.9100 | 0.8788 | 0.8944 |
Base model
google-bert/bert-base-uncased