File size: 622 Bytes
c4691b9 a5e4e73 c4691b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ---
license: apache-2.0
tags:
- text-classification
- sentiment
- sst2
- transformers
model_type: opt
library_name: transformers
pipeline_tag: text-classification
---
# OPT-125M Fine-Tuned for Sentiment Classification
This model is a fine-tuned version of `facebook/opt-125m` on the SST-2 dataset.
It performs binary sentiment classification: **POSITIVE** or **NEGATIVE**.
## 📝 Usage
You can use it with the 🤗 Transformers pipeline:
```python
from transformers import pipeline
pipe = pipeline("text-classification", model="terrytaylorbonn/final-opt-sentiment2")
print(pipe("That movie was amazing!")) |