Commit ·
4faf9fa
1
Parent(s): cf49bd7
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,7 +21,7 @@ tokenizer = AutoTokenizer.from_pretrained(model_path)
|
|
| 21 |
model = AutoModelForSequenceClassification.from_pretrained(model_path)
|
| 22 |
|
| 23 |
pipeline = TextClassificationPipeline(model=model, tokenizer=tokenizer)
|
| 24 |
-
print(pipeline('
|
| 25 |
```
|
| 26 |
|
| 27 |
|
|
|
|
| 21 |
model = AutoModelForSequenceClassification.from_pretrained(model_path)
|
| 22 |
|
| 23 |
pipeline = TextClassificationPipeline(model=model, tokenizer=tokenizer)
|
| 24 |
+
print(pipeline('du bist blöd.'))
|
| 25 |
```
|
| 26 |
|
| 27 |
|