Spaces:
Sleeping
Sleeping
Commit
·
5948b80
1
Parent(s):
a2b560f
Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def classify_image(image):
|
|
60 |
for index in range(len(results)):
|
61 |
predicted_label = labels.get(index)
|
62 |
score = results[index]
|
63 |
-
output[predicted_label] = str(
|
64 |
return output
|
65 |
|
66 |
|
|
|
60 |
for index in range(len(results)):
|
61 |
predicted_label = labels.get(index)
|
62 |
score = results[index]
|
63 |
+
output[predicted_label] = str(score)
|
64 |
return output
|
65 |
|
66 |
|