Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Saturdays
/
FER
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
KikoDM
commited on
Apr 20, 2022
Commit
2d8cd2d
·
1 Parent(s):
2e84e7c
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -45,7 +45,7 @@ def predict_image(pic):
45
46
x /= 255
47
48
-
custom = new_model.predict(x)
49
50
emotion_analysis(custom[0])
51
45
46
x /= 255
47
48
+
custom = new_model.predict(x
.reshape(None,48,48,1
)
)
49
50
emotion_analysis(custom[0])
51