此问题已在此处有答案:
Keras AttributeError: 'Sequential' object has no attribute 'predict_classes'(10个答案)
3天前关闭。
def detect_face_mask(img):
y_pred = model.predict_classes(img.reshape(1,224,224,3))
return y_pred
sample1 = cv2.imread('sample/1.jpg')
sample1 = cv2.resize(sample1,(224,224))
detect_face_mask(sample1)
最后一行返回错误“AttributeError:'Sequential'对象没有属性'predict_classes'“
这个确切的代码是工作不,所以有点挣扎,感谢任何帮助
1条答案
按热度按时间thtygnil1#
假设这是一个
keras
Sequential
类,predict_classes
方法已经被弃用两年多了。尝试
然后对于类,你可以使用类似于
具体取决于您的
img
数据。