Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
+
|