Mansurbek commited on
Commit
cd9db19
·
1 Parent(s): 9d3aee5

Update app.py

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