You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all,
I want to implement the U-Net architecture in nengo_dl. Therefore, I need to combine two layers in order to give both as an input to the following layer. When I build a Concatenate layer as following, I get a validation error. But I have already checked the type of the TensorNodes and they are both: <class 'nengo_dl.tensor_node.TensorNode'>. Can anyone help me and explain to me what I am doing wrong?
Hi Louuissaa, unfortunately nengo_dl.Layer only works with single-input single-output layers (it's on our TODO list to support multi-input/multi-output).
However, you could write a little function that takes in a single input, splits it into your two inputs, and then concatenates them. Something like:
Hi all,
I want to implement the U-Net architecture in nengo_dl. Therefore, I need to combine two layers in order to give both as an input to the following layer. When I build a Concatenate layer as following, I get a validation error. But I have already checked the type of the TensorNodes and they are both: <class 'nengo_dl.tensor_node.TensorNode'>. Can anyone help me and explain to me what I am doing wrong?
ValidationError: Connection.pre: '[<TensorNode (unlabeled) at 0x7ff9008e2278>, <TensorNode (unlabeled) at 0x7ff90094bf60>]' is not a Nengo object
Thanks!
The text was updated successfully, but these errors were encountered: