Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -61,15 +61,6 @@ with gr.Blocks(css="#main-col {max-width: 640px; margin: auto;}") as demo:
|
|
| 61 |
|
| 62 |
result_output = gr.Label(label="Prediction")
|
| 63 |
|
| 64 |
-
gr.Examples(
|
| 65 |
-
examples=[
|
| 66 |
-
"example_images/undercooked.jpg",
|
| 67 |
-
"example_images/raw.jpg",
|
| 68 |
-
"example_images/cooked.jpg"
|
| 69 |
-
],
|
| 70 |
-
inputs=image_input
|
| 71 |
-
)
|
| 72 |
-
|
| 73 |
gr.HTML("<br><small>Custom model trained with MobileNetV2</small>")
|
| 74 |
|
| 75 |
run_button.click(fn=classify, inputs=image_input, outputs=result_output)
|
|
|
|
| 61 |
|
| 62 |
result_output = gr.Label(label="Prediction")
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
gr.HTML("<br><small>Custom model trained with MobileNetV2</small>")
|
| 65 |
|
| 66 |
run_button.click(fn=classify, inputs=image_input, outputs=result_output)
|