Mansurbek commited on
Commit
792e706
·
1 Parent(s): 59f886e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -30,12 +30,12 @@ def fn(text):
30
  with gr.Blocks() as demo:
31
  with gr.Row():
32
  with gr.Column():
33
- output0 = gr.Label(label=models[0], value=fn(examples([0][0])))
34
  with gr.Column():
35
- output1 = gr.Label(label=models[1])
36
  with gr.Row():
37
  with gr.Column():
38
- output2 = gr.Label(label=models[2])
39
  with gr.Column():
40
  input = gr.Textbox(label="Input", value=examples[0], lines=8, max_lines=8)
41
  btn = gr.Button("Check")
 
30
  with gr.Blocks() as demo:
31
  with gr.Row():
32
  with gr.Column():
33
+ output0 = gr.Label(label=models[0], value=fn(examples([0])[0]))
34
  with gr.Column():
35
+ output1 = gr.Label(label=models[1], value=fn(examples([0])[1])
36
  with gr.Row():
37
  with gr.Column():
38
+ output2 = gr.Label(label=models[2], value=fn(examples([0])[2])
39
  with gr.Column():
40
  input = gr.Textbox(label="Input", value=examples[0], lines=8, max_lines=8)
41
  btn = gr.Button("Check")