mkthoma commited on
Commit
fe19eff
·
1 Parent(s): 4a1f4c9

app update

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -85,7 +85,7 @@ demo = gr.Interface(model_inference, inputs=[gr.Image(label="Input an image"),
85
  gr.Radio(["Yes", "No"], value="No" , label="Show GradCAM outputs"),
86
  gr.Slider(0, 1, value=0.5, label="Opacity of GradCAM"),
87
  gr.Slider(-2, -1, value=-1, step=1, label="Which Layer?")],
88
- outputs=[gr.Gallery(rows=2, columns=1), label="Model Outputs"],
89
  title=title, description=description)
90
  demo.launch()
91
 
 
85
  gr.Radio(["Yes", "No"], value="No" , label="Show GradCAM outputs"),
86
  gr.Slider(0, 1, value=0.5, label="Opacity of GradCAM"),
87
  gr.Slider(-2, -1, value=-1, step=1, label="Which Layer?")],
88
+ outputs=[gr.Gallery(label="Model Outputs", rows=2, columns=1)],
89
  title=title, description=description)
90
  demo.launch()
91