ockapuh commited on
Commit
211c440
1 Parent(s): fc707d5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -2,4 +2,8 @@
2
  language:
3
  - es
4
  pipeline_tag: text-classification
5
- ---
 
 
 
 
 
2
  language:
3
  - es
4
  pipeline_tag: text-classification
5
+ ---
6
+ from transformers import pipeline
7
+
8
+ pipe = pipeline("text-classification", model=model, tokenizer=tokenizer)
9
+ pipe(["Este bar es horrible", "Este bar es buenísimo"]))