找不到 keras.layers.containers.Sequential()
Can't find keras.layers.containers.Sequential()
我在 Keras 2.0.4 中找不到 class keras.layers.containers.Sequential()。我有错误 'ImportError: cannot import name containers'
Screen
您是否正在尝试使用 Sequential Model?
from keras.models import Sequential
但我真的建议直接使用 Funciontal API Model,任何类型的带分支的模型都需要它。
from keras.models import Model
使用 conda 安装 TensorFlow
conda install tensorflow
我在 Keras 2.0.4 中找不到 class keras.layers.containers.Sequential()。我有错误 'ImportError: cannot import name containers' Screen
您是否正在尝试使用 Sequential Model?
from keras.models import Sequential
但我真的建议直接使用 Funciontal API Model,任何类型的带分支的模型都需要它。
from keras.models import Model
使用 conda 安装 TensorFlow
conda install tensorflow