imeesam commited on
Commit
39dc6f6
·
verified ·
1 Parent(s): 68a7434

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -19,4 +19,5 @@ def classify(image):
19
  return "Unhealthy" if output > 0.45 else "Healthy"
20
 
21
  iface = gr.Interface(fn=classify, inputs=gr.Image(type="pil"), outputs="text")
22
- iface.launch()
 
 
19
  return "Unhealthy" if output > 0.45 else "Healthy"
20
 
21
  iface = gr.Interface(fn=classify, inputs=gr.Image(type="pil"), outputs="text")
22
+ iface.launch(debug=True, share=True)
23
+