AttributeError: module 'tensorflow_core.keras' has no attribute 'sequential'
时间: 2024-06-08 15:04:02 浏览: 252
TensorFlow2.1.0报错解决:AttributeError: ‘Sequential’ object has no attribute ‘_get_distribution_strategy
5星 · 资源好评率100%
"AttributeError: module 'tensorflow_core.keras' has no attribute 'sequential'" 这个错误通常出现在使用旧版本的 TensorFlow 库时。在新版本的 TensorFlow 库中,keras 库已被整合到 tensorflow 中,因此使用 `tensorflow.keras` 来代替 `tensorflow_core.keras`,并使用 `tensorflow.keras.models.Sequential()` 来代替 `tensorflow_core.keras.Sequential()`。
以下是一个示例代码:
```python
import tensorflow as tf
model = tf.keras.models.Sequential([
tf.keras.layers.Dense(64, activation='relu'),
tf.keras.layers.Dense(10, activation='softmax')
])
```
阅读全文