wgetdd commited on
Commit
b2ce316
1 Parent(s): 1893f39

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,7 +38,7 @@ gr.Interface(
38
  get_misclassified_images(show_misclassified, num_images) if show_misclassified else None,
39
  get_gradcam(model,image, opacity,layer) if show_gradcam else None],
40
  inputs=[input_component, num_of_output_classes,show_misclassified_checkbox, num_images_input, show_gradcam_checkbox, opacity_slider,layer_input],
41
- outputs=[gr.outputs.Label(), gr.Image(shape=(500, 500)), gr.Image(shape=(500, 500))],
42
  title="CIFAR10 Trained on Custom Residual CNN Architecture",
43
  examples=[
44
  ["example_images/example_1.png",5,True,5,True,0.2,'layer3'], # You can provide your own example input values here
 
38
  get_misclassified_images(show_misclassified, num_images) if show_misclassified else None,
39
  get_gradcam(model,image, opacity,layer) if show_gradcam else None],
40
  inputs=[input_component, num_of_output_classes,show_misclassified_checkbox, num_images_input, show_gradcam_checkbox, opacity_slider,layer_input],
41
+ outputs=[gr.outputs.Label(), gr.Image(shape=(500, 500)), gr.Image(shape=(250, 250))],
42
  title="CIFAR10 Trained on Custom Residual CNN Architecture",
43
  examples=[
44
  ["example_images/example_1.png",5,True,5,True,0.2,'layer3'], # You can provide your own example input values here