mamakos commited on
Commit
8297465
·
verified ·
1 Parent(s): 758c9b2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -33,8 +33,7 @@ model = closedmindedness.classifier()
33
 
34
  text_1 = "I will never change my mind."
35
  text_2 = "What a beautiful day."
36
- text_3 = "I don't understand."
37
- texts = [text_1, text_2, text_3]
38
  probs = model.predict(texts)
39
  print(probs) # []
40
 
 
33
 
34
  text_1 = "I will never change my mind."
35
  text_2 = "What a beautiful day."
36
+ texts = [text_1, text_2]
 
37
  probs = model.predict(texts)
38
  print(probs) # []
39