rachith commited on
Commit
f83d80f
1 Parent(s): 828b751

premise and hypothesis prompts

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,4 +21,4 @@ def zs(premise,hypothesis):
21
  true_prob = probs[:,1].item() * 100
22
  return true_prob
23
 
24
- gr.Interface(fn=zs, inputs="text", outputs="text").launch()
 
21
  true_prob = probs[:,1].item() * 100
22
  return true_prob
23
 
24
+ gr.Interface(fn=zs, inputs=["text", "text"], outputs="text").launch()