update app.py
Browse files
app.py
CHANGED
@@ -170,8 +170,9 @@ with gr.Blocks(css=".gradio-container {background:honeydew;}", title="WideResNet
|
|
170 |
|
171 |
send_btn = gr.Button("Infer")
|
172 |
|
173 |
-
gr.
|
174 |
-
|
|
|
175 |
|
176 |
send_btn.click(fn=predict, inputs=input_image, outputs=output_label)
|
177 |
|
|
|
170 |
|
171 |
send_btn = gr.Button("Infer")
|
172 |
|
173 |
+
with gr.Row():
|
174 |
+
gr.Examples(example_files, inputs=input_image)
|
175 |
+
#gr.Examples(['examples/sample02.png', 'examples/sample04.png'], inputs=input_image2)
|
176 |
|
177 |
send_btn.click(fn=predict, inputs=input_image, outputs=output_label)
|
178 |
|