mp6kv commited on
Commit
1da9900
1 Parent(s): 2c40edf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -35,8 +35,10 @@ classifier = pipeline("text-classification",model="mp6kv/main_intent_test")
35
 
36
 
37
  output = classifier("great job, you're getting it!")
38
- output[0]['score']
39
- output[0]['label']
 
 
40
 
41
  ## Training and evaluation data
42
 
 
35
 
36
 
37
  output = classifier("great job, you're getting it!")
38
+
39
+ score = output[0]['score']
40
+
41
+ label = output[0]['label']
42
 
43
  ## Training and evaluation data
44