nppmatt commited on
Commit
5889890
·
1 Parent(s): c3d30a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -136,8 +136,8 @@ prediction = np.argmax(prediction, axis=1)
136
  st.write(prediction)
137
  st.write(targets)
138
 
139
- st.write("after argmax axis 0")
140
- targets = np.argmax(targets, axis=0)
141
- prediction = np.argmax(prediction, axis=0)
142
  st.write(prediction)
143
  st.write(targets)
 
136
  st.write(prediction)
137
  st.write(targets)
138
 
139
+ st.write("after argmax axis 2")
140
+ targets = np.argmax(targets, axis=2)
141
+ prediction = np.argmax(prediction, axis=2)
142
  st.write(prediction)
143
  st.write(targets)