Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ if uploaded_file is not None:
|
|
23 |
preimg_flat = image_array.reshape(1, 784)
|
24 |
preliminar = model.predict(preimg_flat)
|
25 |
|
26 |
-
|
27 |
prediccion = np.argmax(preliminar, axis=1)
|
28 |
|
29 |
st.write(prediccion)
|
|
|
23 |
preimg_flat = image_array.reshape(1, 784)
|
24 |
preliminar = model.predict(preimg_flat)
|
25 |
|
26 |
+
st.write(preliminar)
|
27 |
prediccion = np.argmax(preliminar, axis=1)
|
28 |
|
29 |
st.write(prediccion)
|