rachith commited on
Commit
9cca131
1 Parent(s): e419026

fixed captials

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,7 +33,7 @@ with gr.Blocks() as demo:
33
  gr.Markdown(f" # {title}")
34
  gr.Markdown(f" ## {description}")
35
  with gr.Row():
36
- premise = gr.Textbox(label="Premise",placeholder = "Roger Federer is an amazing Tennis Player")
37
  hypothesis = gr.Textbox(label="Hypothesis", placeholder = "The stance to Roger Federer is positive.")
38
  with gr.Row():
39
  greet_btn = gr.Button("Compute")
@@ -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
  fn = zs,
48
- examples = [["Roger Federer is an amazing Tennis Player","The stance to Roger Federer is positive."]],
49
  inputs = [premise,hypothesis]
50
  )
51
 
 
33
  gr.Markdown(f" # {title}")
34
  gr.Markdown(f" ## {description}")
35
  with gr.Row():
36
+ premise = gr.Textbox(label="Premise",placeholder = "Roger Federer is an amazing tennis player.")
37
  hypothesis = gr.Textbox(label="Hypothesis", placeholder = "The stance to Roger Federer is positive.")
38
  with gr.Row():
39
  greet_btn = gr.Button("Compute")
 
45
  greet_btn.click(fn=zs, inputs=[premise,hypothesis], outputs=[contradiction,entailment])
46
  gr.Examples(
47
  fn = zs,
48
+ examples = [["Roger Federer is an amazing tennis player.","The stance to Roger Federer is positive."]],
49
  inputs = [premise,hypothesis]
50
  )
51