alok94 commited on
Commit
c046a89
·
1 Parent(s): 77f00cb

galary fix test

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -386,14 +386,13 @@ with gr.Blocks(css=css) as demo:
386
  clear=gr.ClearButton(img_upload)
387
  with gr.Column():
388
  btn=gr.Button("Identify")
389
- with gr.Row():
390
- gry=gr.Gallery(value=skin_images, columns=3, rows=2, show_label=False)
391
 
392
  with gr.Column():
393
  gr.Markdown("Most probable skin condition")
394
  label=gr.Label("")
395
  gr.Markdown("Other possible values")
396
  bar = gr.BarPlot()
 
397
 
398
 
399
  btn.click(predict_digit,inputs=[img_upload],outputs=[label,bar])
 
386
  clear=gr.ClearButton(img_upload)
387
  with gr.Column():
388
  btn=gr.Button("Identify")
 
 
389
 
390
  with gr.Column():
391
  gr.Markdown("Most probable skin condition")
392
  label=gr.Label("")
393
  gr.Markdown("Other possible values")
394
  bar = gr.BarPlot()
395
+ gry=gr.Gallery(value=skin_images, columns=3, rows=2, show_label=False)
396
 
397
 
398
  btn.click(predict_digit,inputs=[img_upload],outputs=[label,bar])