tobischimanski
commited on
Commit
•
9aa8ae8
1
Parent(s):
833a0d8
Update README.md
Browse files
README.md
CHANGED
@@ -33,7 +33,7 @@ tokenizer = AutoTokenizer.from_pretrained(tokenizer_name, max_len=512)
|
|
33 |
pipe = pipeline("text-classification", model=model, tokenizer=tokenizer) # set device=0 to use GPU
|
34 |
|
35 |
# See https://huggingface.co/docs/transformers/main_classes/pipelines#transformers.pipeline
|
36 |
-
print(pipe("We follow rigorous supplier checks to prevent slavery and ensure workers' rights."))
|
37 |
```
|
38 |
|
39 |
## More details can be found in the paper
|
|
|
33 |
pipe = pipeline("text-classification", model=model, tokenizer=tokenizer) # set device=0 to use GPU
|
34 |
|
35 |
# See https://huggingface.co/docs/transformers/main_classes/pipelines#transformers.pipeline
|
36 |
+
print(pipe("We follow rigorous supplier checks to prevent slavery and ensure workers' rights."), padding=True, truncation=True)
|
37 |
```
|
38 |
|
39 |
## More details can be found in the paper
|