yuragoithf commited on
Commit
5948b80
·
1 Parent(s): a2b560f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(100*score)
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