-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nengo_spinnaker latest unable to find tps.full_transform #169
Comments
Can you post a small version of the model you're trying to run? Does this happen to any nengo model you try to run, or just this one? |
This is the git that I am using: https://github.com/bjkomer/spiking-ratslam/blob/master/ratslam/spinnaker_nengo_posecells_ci.py It happens with any nengo model I am trying to run. It seems that tps is a EnsembleTransmissionParameters type object and this EnsembleTransmissionParameters in nengo_spinnaker.builder.transmission_parameter has not got any full_transform method. However, there is some issue with it. class EnsembleTransmissionParameters(TransmissionParameters):
Thanks. |
Facing the below issue:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/nengo_gui-0.4.5.dev0-py2.7.egg/nengo_gui/page.py", line 488, in build
self.sim = backend.Simulator(self.model)
File "/home/samia/Documents/nengo_spinnaker-master/nengo_spinnaker/simulator.py", line 112, in init
self.model.build(network, **builder_kwargs)
File "/home/samia/Documents/nengo_spinnaker-master/nengo_spinnaker/builder/builder.py", line 211, in build
self.connection_map.insert_and_stack_interposers()
File "/home/samia/Documents/nengo_spinnaker-master/nengo_spinnaker/builder/model.py", line 174, in insert_and_stack_interposers
interposers, cm = self.insert_interposers()
File "/home/samia/Documents/nengo_spinnaker-master/nengo_spinnaker/builder/model.py", line 222, in insert_interposers
trans = tps.full_transform(False, False)
AttributeError: 'object' object has no attribute 'full_transform'
Nengo version being used is 2.8.0
Any help with resolving this issue is much appreciated.
Thanks!
The text was updated successfully, but these errors were encountered: