predict_proba() method of Keras model does not exist

房东的猫 提交于 2019-12-24 02:06:05

问题


I am trying to generate class scores by calling predict_proba() of Keras model, but it seems that this function does not exist! Is it deprecated because I see some examples in Google? I am using Keras 2.2.2.


回答1:


The predict_proba() and predict_classes() methods are not well-defined for models created using functional API (i.e. keras.models.Model()). That's because the models created using functional API may have multiple output layers each with different configurations. Therefore predicting probabilities in this case is not meaningful, even if your model outputs probabilities. The method you referred to, as well as predict_classes(), is only defined for Sequential models (i.e. keras.models.Sequential()).



来源:https://stackoverflow.com/questions/52653320/predict-proba-method-of-keras-model-does-not-exist

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!