rachith commited on
Commit
2aa92a9
1 Parent(s): 8ff9a48

fixing example inputs

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ with gr.Blocks() as demo:
45
  greet_btn.click(fn=zs, inputs=[premise,hypothesis], outputs=[contradiction,entailment])
46
  gr.Examples(
47
  examples = [["Roger Federer is an amazing Tennis Player","The stance to Roger Federer is positive."]],
48
- inputs = [["Premise","Hypothesis"]]
49
  )
50
 
51
  demo.launch()
 
45
  greet_btn.click(fn=zs, inputs=[premise,hypothesis], outputs=[contradiction,entailment])
46
  gr.Examples(
47
  examples = [["Roger Federer is an amazing Tennis Player","The stance to Roger Federer is positive."]],
48
+ inputs = [[premise,hypothesis]]
49
  )
50
 
51
  demo.launch()