在Keras2.0.4中找不到类keras.layers.containers.Sequential()。我有错误'ImportError:无法导入名称容器‘屏幕
发布于 2017-05-21 16:07:59
你想使用序贯模型吗?
from keras.models import Sequential
但是我确实建议直接使用基础API模型,对于任何有分支的模型,您都需要这样做。
from keras.models import Model
发布于 2018-10-29 19:29:20
使用conda安装TensorFlow
conda install tensorflow
https://stackoverflow.com/questions/44097279
相似问题