Gluon multi-input Block

Hi @feevos,

thank you for your quick reply, indeed this is working like charm. :slight_smile:

I was able to reproduce the error I mentioned in my post by changing your network definition from

net = ConcatLayer()
net.hybridize(static_alloc=True,static_shape=True)

to

net = gluon.nn.HybridSequential()
net.add(ConcatLayer())
net.hybridize()

I’ve declared the network like this because ultimately I will need multiple layers.

Do I need to change how I am calling the network with the inputs if I am using a Sequential model?

Thanks,
Philipp

1 Like