tobischimanski commited on
Commit
b170aba
1 Parent(s): 5ebae0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -31,7 +31,7 @@ tokenizer = AutoTokenizer.from_pretrained(tokenizer_name, max_len=512)
31
  pipe = pipeline("text-classification", model=model, tokenizer=tokenizer) # set device=0 to use GPU
32
 
33
  # See https://huggingface.co/docs/transformers/main_classes/pipelines#transformers.pipeline
34
- print(pipe("We follow rigorous supplier checks to prevent slavery and ensure workers' rights."), padding=True, truncation=True)
35
  ```
36
 
37
  ## More details can be found in the paper
 
31
  pipe = pipeline("text-classification", model=model, tokenizer=tokenizer) # set device=0 to use GPU
32
 
33
  # See https://huggingface.co/docs/transformers/main_classes/pipelines#transformers.pipeline
34
+ print(pipe("We follow rigorous supplier checks to prevent slavery and ensure workers' rights.", padding=True, truncation=True))
35
  ```
36
 
37
  ## More details can be found in the paper