我有一个关于使用我比较陌生的 Keras 的问题。我正在使用卷积神经网络,将其结果输入标准感知器层,然后生成我的输出。这个 CNN 输入了一系列图像。到目前为止,这很正常。
现在我喜欢将一个短的非图像输入向量直接传递到最后一个感知器层,而不是通过所有的 CNN 层发送。如何在 Keras 中做到这一点?
我的代码如下所示:
# last CNN layer before perceptron layer
model.add(Convolution2D(200, 2, 2, border_mode='same'))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2), strides=(2, 2)))
model.add(Dropout(0.25))
# perceptron layer
model.add(Flatten())
# here I like to add to the input from the CNN an additional vector directly
model.add(Dense(1500, W_regularizer=l2(1e-3)))
model.add(Activation('relu'))
model.add(Dropout(0.5))
model.add(Dense(1))
任何答案都非常感谢,谢谢!