Upload app.py
Browse files
app.py
CHANGED
@@ -52,10 +52,9 @@ with gr.Blocks() as demo:
|
|
52 |
with gr.Row():
|
53 |
gr.Markdown(description)
|
54 |
with gr.Row():
|
55 |
-
image_input = gr.Image(label="Upload an image",
|
|
|
56 |
label_output = gr.Label(label="Prediction")
|
57 |
-
submit_button = gr.Button("Classify")
|
58 |
-
|
59 |
with gr.Row():
|
60 |
gr.Examples(examples=examplespath, inputs=image_input)
|
61 |
|
|
|
52 |
with gr.Row():
|
53 |
gr.Markdown(description)
|
54 |
with gr.Row():
|
55 |
+
image_input = gr.Image(label="Upload an image", width=192, height=192)
|
56 |
+
submit_button = gr.Button("Classify")
|
57 |
label_output = gr.Label(label="Prediction")
|
|
|
|
|
58 |
with gr.Row():
|
59 |
gr.Examples(examples=examplespath, inputs=image_input)
|
60 |
|