Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -67,9 +67,9 @@ with gr.Blocks() as app:
|
|
67 |
btn = gr.Button()
|
68 |
|
69 |
with gr.Column():
|
70 |
-
outp0 = gr.Textbox()
|
71 |
-
outp1 = gr.Textbox()
|
72 |
-
outp2 = gr.Textbox()
|
73 |
btn.click(aiornot0,[inp],outp0)
|
74 |
btn.click(aiornot1,[inp],outp1)
|
75 |
btn.click(aiornot2,[inp],outp2)
|
|
|
67 |
btn = gr.Button()
|
68 |
|
69 |
with gr.Column():
|
70 |
+
outp0 = gr.Textbox(label=f'{models[0]}')
|
71 |
+
outp1 = gr.Textbox(label=f'{models[1]}')
|
72 |
+
outp2 = gr.Textbox(label=f'{models[2]}')
|
73 |
btn.click(aiornot0,[inp],outp0)
|
74 |
btn.click(aiornot1,[inp],outp1)
|
75 |
btn.click(aiornot2,[inp],outp2)
|