KikoDM commited on
Commit
3565d13
·
1 Parent(s): a80d79c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ def predict_image(pic):
47
 
48
  #x /= 255
49
 
50
- custom = new_model.predict(x.reshape(0,48,48,1))
51
 
52
  emotion_analysis(custom[0])
53
 
 
47
 
48
  #x /= 255
49
 
50
+ custom = new_model.predict(x.reshape(48,48,1))
51
 
52
  emotion_analysis(custom[0])
53