作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试一个小程序来捕捉来自 here 的图像的情感。
错误
LOCAL.ALL_OBJECTS[generic_utils.to_snake_case(key)] = value
AttributeError: module 'keras.utils.generic_utils' has no attribute 'to_snake_case'
代码.py
from fer import FER
import matplotlib.pyplot as plt
from tensorflow.keras.utils import to_snake_case
def emotionCapture():
img = plt.imread("happy.jpg")
detector = FER(mtcnn=True)
print(detector.detect_emotions(img))
plt.imshow(img)
predicted_emotion, score = detector.top_emotion(img)
print (predicted_emotion)
return predicted_emotion
emotionCapture()
凯拉斯 2.4.3 版
最佳答案
删除 'mtcnn=True'
后来自 detector = FER(mtcnn=True)
该功能有效。
关于tensorflow - 属性错误 : module 'keras.utils.generic_utils' has no attribute 'to_snake_case' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67733801/
我正在尝试一个小程序来捕捉来自 here 的图像的情感。 错误 LOCAL.ALL_OBJECTS[generic_utils.to_snake_case(key)] = value Attribut
我是一名优秀的程序员,十分优秀!