AttributeError: Sequential object has no attribute predict_classes
时间: 2023-06-22 22:39:45 浏览: 253
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常出现在使用 Keras Sequential 模型的时候,因为它并没有 predict_classes 方法。如果你想要获取模型的预测结果,可以使用 predict 方法,然后再使用 numpy 库中的 argmax 方法获取每个样本的预测结果索引。例如:
```python
import numpy as np
# 假设 model 是一个 Keras Sequential 模型
predictions = model.predict(input_data)
predicted_classes = np.argmax(predictions, axis=1)
```
这样就可以得到每个样本的预测结果了。
阅读全文