How to read output of convolutional synapse output (when there are no neurons after that synapses) from Loihi to cpu #879
Unanswered
gwgknudayanga
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi,
As the output layer of my neural network it is just a layer of convolutional synapses as i need this for object detection coordinates.
I connected the conv synapses outputs to NxToPyAdapter as follows. But When i am running this configuration in loihi it always gives the following error.
"KeyError: <lava.magma.core.process.ports.ports.InPort object at 0x7f10be3ba910>" (This port is the in port of conv5 synapse defined here)
conv5 = Conv(weight = np.ones((10,1,1,16)),padding = 0,stride = 1,input_shape = net.out_layer.out.shape)
out_adp = eio.spike.NxToPyAdapter(shape=conv5.a_out.shape)
net.out_layer.out.connect(conv5.s_in)
conv5.a_out.connect(out_adp.inp)
Rgds,
Udayanga
Beta Was this translation helpful? Give feedback.
All reactions