sasha HF staff commited on
Commit
2e6b143
·
verified ·
1 Parent(s): 746be36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -48,12 +48,12 @@ with gr.Blocks() as demo:
48
  gr.Markdown("# Find my Butterfly 🦋")
49
  gr.Markdown("## Use this Space to find your butterfly, based on the [iNaturalist butterfly dataset](https://huggingface.co/datasets/huggan/inat_butterflies_top10k)!")
50
  with gr.Row():
51
- with gr.Column(min_width= 900):
52
- inputs = gr.Image(scale=1)
53
  btn = gr.Button("Find my butterfly!")
54
  description = gr.Markdown()
55
 
56
- with gr.Column():
57
  outputs=gr.Gallery(rows=2)
58
  labels = gr.Label()
59
 
 
48
  gr.Markdown("# Find my Butterfly 🦋")
49
  gr.Markdown("## Use this Space to find your butterfly, based on the [iNaturalist butterfly dataset](https://huggingface.co/datasets/huggan/inat_butterflies_top10k)!")
50
  with gr.Row():
51
+ with gr.Column(scale=1):
52
+ inputs = gr.Image()
53
  btn = gr.Button("Find my butterfly!")
54
  description = gr.Markdown()
55
 
56
+ with gr.Column(scale=2):
57
  outputs=gr.Gallery(rows=2)
58
  labels = gr.Label()
59