OmerFarooq commited on
Commit
67ae7bb
1 Parent(s): 9187e65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -116,8 +116,8 @@ demo = gr.Interface(
116
  fn = get_grad,
117
  inputs = gr.Image(type = "pil", shape = (224,224)),
118
  outputs = [gr.Image(type = "numpy", width = 320, height = 320), gr.Textbox(label = 'Prediction', info = '(threshold: 0.5)')],
119
- description = "Visual Explanations from Deep Networks",
120
- title = "Gradient-Weighted Class Activation Mapping (Grad-CAM)"
121
  )
122
  demo.launch()
123
 
 
116
  fn = get_grad,
117
  inputs = gr.Image(type = "pil", shape = (224,224)),
118
  outputs = [gr.Image(type = "numpy", width = 320, height = 320), gr.Textbox(label = 'Prediction', info = '(threshold: 0.5)')],
119
+ description = "Visual Explanations from Deep Networks".style(fontsize = 10),
120
+ title = "Gradient-Weighted Class Activation Mapping (Grad-CAM)".style(fontsize = 10)
121
  )
122
  demo.launch()
123