lfernandopg commited on
Commit
4554bb8
·
1 Parent(s): e70ec1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -49,4 +49,5 @@ if user_input and button :
49
  return_tensors="tf")
50
  output = model(predict_input)[0]
51
  prediction_value = tf.argmax(output, axis=1).numpy()[0]
 
52
  st.write("Prediction: ",d[prediction_value])
 
49
  return_tensors="tf")
50
  output = model(predict_input)[0]
51
  prediction_value = tf.argmax(output, axis=1).numpy()[0]
52
+ st.write("Logits: ",prediction_value)
53
  st.write("Prediction: ",d[prediction_value])