我正在尝试在Keras中建立具有预先指定连接的神经网络。例如:
例如,如果我的输入X具有特征“ a”,我只想在下一层训练神经元“ b”。
我不确定如何指定keras中各层之间的连接。
谢谢!
答案 0 :(得分:0)
根据您的情况,可以结合使用Lambda
层和merge
的层。
因此,可以通过以下方式完成:
input = Input((6,))
# Split input to 3 streams
a = Lambda(lambda x: x[:, [0,4]], output_shape=(2,))(input)
b = Lambda(lambda x: x[:, 0:5], output_shape=(5,))(input)
c = Lambda(lambda x: x[:, 5], output_shape=(1,))(input)
# Build the hidden layer
hidden = merge([a, c, b], mode='concat')
# Split the hidden output to 2 streams
aa = Lambda(lambda x: x[:, 0:1], output_shape=(2,))(hidden)
d = Lambda(lambda x: x[:, 2], output_shape=(1,))(hidden)
# Build the output layer
output = merge([aa, d], mode='concat')
model = Model(input, output)