nyu-mll/glue
Viewer • Updated • 1.49M • 445k • 524
How to use minseok0809/bert-base-uncased-finetuned-sst2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="minseok0809/bert-base-uncased-finetuned-sst2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("minseok0809/bert-base-uncased-finetuned-sst2")
model = AutoModelForSequenceClassification.from_pretrained("minseok0809/bert-base-uncased-finetuned-sst2", device_map="auto")This model is a fine-tuned version of bert-base-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 |
|---|---|---|---|---|
| No log | 1.0 | 132 | 0.3186 | 0.9278 |
| No log | 2.0 | 264 | 0.3655 | 0.9243 |
| No log | 3.0 | 396 | 0.3763 | 0.9255 |
Base model
google-bert/bert-base-uncased