Update app.py
Browse files
app.py
CHANGED
|
@@ -13,8 +13,8 @@ def predict(img):
|
|
| 13 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
| 14 |
|
| 15 |
|
| 16 |
-
title = "
|
| 17 |
-
description = "
|
| 18 |
examples = ['invasive', 'endemic']
|
| 19 |
|
| 20 |
gr.Interface(
|
|
|
|
| 13 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
| 14 |
|
| 15 |
|
| 16 |
+
title = "Plant species classifier"
|
| 17 |
+
description = "Model that tries to classify the plant species from the Canary Islands as either endemic or invasive."
|
| 18 |
examples = ['invasive', 'endemic']
|
| 19 |
|
| 20 |
gr.Interface(
|