Sa-m commited on
Commit
e015e39
1 Parent(s): 252f8ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -43,10 +43,11 @@ def classify_image(inp):
43
  # result[label] = float(predicted_class_indices[i])
44
  # except KeyError:
45
  # print(f"KeyError: Label not found for index {predicted_class_indices[i]}")
46
- result = [f"{label}: {prediction:.2f}" for label, prediction in zip(labels.tolist(), np.round(prediction, 2).tolist())]
47
  return ", ".join(result)
48
 
49
 
 
50
 
51
 
52
 
 
43
  # result[label] = float(predicted_class_indices[i])
44
  # except KeyError:
45
  # print(f"KeyError: Label not found for index {predicted_class_indices[i]}")
46
+ result = [f"{label}: {prediction:.2f}" for label, prediction in labels.items()]
47
  return ", ".join(result)
48
 
49
 
50
+
51
 
52
 
53