Update README.md
Browse files
README.md
CHANGED
|
@@ -37,7 +37,7 @@ model = AutoModelForSequenceClassification.from_pretrained("roberta-base", confi
|
|
| 37 |
model = PeftModel.from_pretrained(model, "solwol/roberta-sentiment-classifier-peft")
|
| 38 |
```
|
| 39 |
|
| 40 |
-
|
| 41 |
|
| 42 |
```python
|
| 43 |
from transformers import AutoTokenizer, TextClassificationPipeline
|
|
|
|
| 37 |
model = PeftModel.from_pretrained(model, "solwol/roberta-sentiment-classifier-peft")
|
| 38 |
```
|
| 39 |
|
| 40 |
+
Next, to perform sentiment classification:
|
| 41 |
|
| 42 |
```python
|
| 43 |
from transformers import AutoTokenizer, TextClassificationPipeline
|