jaekookang commited on
Commit
c5d33e1
·
1 Parent(s): b9eabcc

update "enable_queue"

Browse files
Files changed (1) hide show
  1. gradio_gradcam.py +1 -2
gradio_gradcam.py CHANGED
@@ -71,10 +71,9 @@ iface = gr.Interface(
71
  gr.outputs.Image(label='Output image', type='pil')
72
  ],
73
  examples=examples,
74
- enable_queue=True,
75
  article='<p style="text-align:center">Based on <a href="https://keras.io/examples/vision/grad_cam/">the example</a> written by <a href="https://twitter.com/fchollet">fchollet</a></p>',
76
  )
77
 
78
 
79
  if __name__ == '__main__':
80
- iface.launch(debug=True)
 
71
  gr.outputs.Image(label='Output image', type='pil')
72
  ],
73
  examples=examples,
 
74
  article='<p style="text-align:center">Based on <a href="https://keras.io/examples/vision/grad_cam/">the example</a> written by <a href="https://twitter.com/fchollet">fchollet</a></p>',
75
  )
76
 
77
 
78
  if __name__ == '__main__':
79
+ iface.launch(debug=True, enable_queue=True,)