nyu-mll/glue
Viewer • Updated • 1.49M • 462k • 495
How to use jacobduncan00/hackMIT-finetuned-sst2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jacobduncan00/hackMIT-finetuned-sst2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jacobduncan00/hackMIT-finetuned-sst2")
model = AutoModelForSequenceClassification.from_pretrained("jacobduncan00/hackMIT-finetuned-sst2")This model is a fine-tuned version of Blaine-Mason/hackMIT-finetuned-sst2 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 |
|---|---|---|---|---|
| 0.0652 | 1.0 | 1053 | 0.9837 | 0.7970 |
| 0.0586 | 2.0 | 2106 | 0.9927 | 0.7959 |
| 0.0549 | 3.0 | 3159 | 1.0046 | 0.7970 |