rubenwol commited on
Commit
e31a574
1 Parent(s): 5d8ba3d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -17,7 +17,8 @@ tokenizer = AutoTokenizer.from_pretrained("biu-nlp/superpal")
17
 
18
  model = AutoModelForSequenceClassification.from_pretrained("biu-nlp/superpal")
19
 
20
- result = model("Prime Minister Hun Sen insisted that talks take place in Cambodia. </s><s> Cambodian leader Hun Sen rejected opposition parties' demands for talks outside the country.")
 
21
  ```
22
 
23
 
 
17
 
18
  model = AutoModelForSequenceClassification.from_pretrained("biu-nlp/superpal")
19
 
20
+ input = tokenizer("Prime Minister Hun Sen insisted that talks take place in Cambodia. </s><s> Cambodian leader Hun Sen rejected opposition parties' demands for talks outside the country.")
21
+ result = model(input)
22
  ```
23
 
24