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