'型号'对象没有属性'添加' Keras Autoencoder

时间:2017-03-22 12:01:03

标签: python keras autoencoder

我喜欢将初始化程序添加到我的自动编码器

__pexit

但我收到此错误

  

'型号'对象没有属性'添加'

1 个答案:

答案 0 :(得分:1)

如果要按顺序添加图层(使用.add()方法),则需要使用Sequential()模型:

autoencoder = Sequential()
autoencoder.add(Dense(64,kernel_initializer='random_uniform',
                bias_initializer='zeros',input_shape=your_input_shape))

您可以阅读guide to Sequential modelits counterpart for the functional API

找到更完整的说明