ariG23498 HF staff commited on
Commit
db273da
·
1 Parent(s): 8681243

add: top 3

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -61,9 +61,9 @@ def get_results(image):
61
  plt.axis("off")
62
 
63
  prediction = tf.nn.softmax(logits, axis=-1)
64
- prediction = prediction.numpy()[0]
65
 
66
- return plt, {labels[i]: float(prediction[i]) for i in range(10)}
67
 
68
  iface = gr.Interface(
69
  fn=get_results,
 
61
  plt.axis("off")
62
 
63
  prediction = tf.nn.softmax(logits, axis=-1)
64
+ prediction = prediction.numpy()[0] * 100
65
 
66
+ return plt, {labels[i]: int(prediction[i]) for i in range(10)}
67
 
68
  iface = gr.Interface(
69
  fn=get_results,