Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,5 +14,5 @@ def predict(input):
|
|
14 |
return {"Benign": float(y_pred[0][0]), "Malignant": float(1-y_pred[0][0])}
|
15 |
|
16 |
io = gradio.Interface(fn=predict, inputs='image', outputs='label', analytics_enabled=True,
|
17 |
-
title="Skin Cancer Detection
|
18 |
io.launch()
|
|
|
14 |
return {"Benign": float(y_pred[0][0]), "Malignant": float(1-y_pred[0][0])}
|
15 |
|
16 |
io = gradio.Interface(fn=predict, inputs='image', outputs='label', analytics_enabled=True,
|
17 |
+
title="Skin Cancer Detection & Classification", description="")
|
18 |
io.launch()
|