e5in my keras model with shape(?, 512, 1, 1). I have got also an input layer called input_conditional with shape shape=(?, 6). The code for my layers is the following:e5 = Convolution2D(512, 4, 4, subsample=(2,2), activation='linear',init='uniform', border_mode='same')(e4)
e5 = LeakyReLU(alpha=0.1)(e5)
e5 = BatchNormGAN()(e5)
model = Model(input=[inputs, input_conditional], output=e5)
model.summary()
input_conditional = Input(shape=(6,))
# merge = Concatenate()([e5, input_conditional])--
You received this message because you are subscribed to the Google Groups "Keras-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-users...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/keras-users/21147b68-13b3-4fee-9f28-4bea23a02cee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
input_conditional = Reshape((6, 1, 1))(input_conditional)e5 = Concatenate([e5, input_conditional])model = Model(input=[inputs], output=e5)
--
You received this message because you are subscribed to the Google Groups "Keras-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-users...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/keras-users/1818effb-1659-4c9f-8d05-674bc33dbda2%40googlegroups.com.
input_conditional1 = Reshape((6, 1, 1))(input_conditional)
e5 = Concatenate()([e5, input_conditional1])
--
You received this message because you are subscribed to the Google Groups "Keras-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-users...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/keras-users/7b2d014f-47fb-4421-b3a9-63bf225765d5%40googlegroups.com.