Okkoman commited on
Commit
30c235a
1 Parent(s): 33e8ffe

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
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", shape=(192, 192))
 
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