Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -136,5 +136,6 @@ with gr.Blocks() as gradio_app:
|
|
136 |
btn_predict = gr.Button("Predict")
|
137 |
|
138 |
btn_predict.click(predict_and_plot, inputs=input_image, outputs=output_map)
|
139 |
-
|
|
|
140 |
gradio_app.launch()
|
|
|
136 |
btn_predict = gr.Button("Predict")
|
137 |
|
138 |
btn_predict.click(predict_and_plot, inputs=input_image, outputs=output_map)
|
139 |
+
examples = ["GB.PNG", "IT.PNG", "NL.PNG", "NZ.PNG"]
|
140 |
+
gr.Examples(examples=examples, inputs=input_image)
|
141 |
gradio_app.launch()
|