nyu-mll/glue
Viewer • Updated • 1.49M • 485k • 498
How to use JeremiahZ/bert-base-uncased-rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="JeremiahZ/bert-base-uncased-rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("JeremiahZ/bert-base-uncased-rte")
model = AutoModelForSequenceClassification.from_pretrained("JeremiahZ/bert-base-uncased-rte")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("JeremiahZ/bert-base-uncased-rte")
model = AutoModelForSequenceClassification.from_pretrained("JeremiahZ/bert-base-uncased-rte")This model is a fine-tuned version of bert-base-uncased on the GLUE RTE 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 |
|---|---|---|---|---|
| No log | 1.0 | 156 | 0.6537 | 0.6318 |
| No log | 2.0 | 312 | 0.6383 | 0.6534 |
| No log | 3.0 | 468 | 0.6972 | 0.6895 |
Base model
google-bert/bert-base-uncased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="JeremiahZ/bert-base-uncased-rte")