'Sequential' object has no attribute 'predict_classes'解决
时间: 2023-06-22 09:26:54 浏览: 71
TensorFlow2.1.0报错解决:AttributeError: ‘Sequential’ object has no attribute ‘_get_distribution_strategy
5星 · 资源好评率100%
这个错误通常出现在使用Keras时,因为Keras在最新版本中已经弃用了`predict_classes`方法。如果你需要使用该方法,可以使用以下代码替换:
```python
import numpy as np
# 替换predict_classes方法
y_prob = model.predict(x_test)
y_classes = np.argmax(y_prob, axis=-1)
```
这个代码将使用`np.argmax`方法来获取每个样本的最大概率预测类别。
阅读全文