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
Describe the bug
Running Mnist on the latest version of pymonntorch and CoNex can not run the mnist example.
To Reproduce
Seems that synapse.tensor has been replace with matrix but there need moderation on the hole project.
Steps to reproduce the behavior:
Traceback (most recent call last):
File "/Users/<user>/code/work/@opensource/CoNeX/Example/test/mnist.py", line 118, in<module>net.initialize()
File "/Users/<user>/code/work/@opensource/CoNeX/conex/nn/structure/neocortex.py", line 154, in initialize
super().initialize(info=info, storage_manager=storage_manager)
File "/Users/<user>/miniconda/envs/conex/lib/python3.10/site-packages/pymonntorch/NetworkCore/Network.py", line 183, in initialize
self.initialize_behaviors()
File "/Users/<user>/miniconda/envs/conex/lib/python3.10/site-packages/pymonntorch/NetworkCore/Network.py", line 189, in initialize_behaviors
behavior.initialize(parent)
File "/Users/<user>/code/work/@opensource/CoNeX/conex/behaviors/synapses/specs.py", line 33, in initialize
synapse.src_delay = synapse.tensor(
File "/Users/<user>/miniconda/envs/conex/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1614, in __getattr__
raise AttributeError("'{}' object has no attribute '{}'".format(
AttributeError: 'StructuredSynapseGroup' object has no attribute 'tensor'
The text was updated successfully, but these errors were encountered:
Describe the bug
Running Mnist on the latest version of
pymonntorch
andCoNex
can not run the mnist example.To Reproduce
Seems that synapse.tensor has been replace with matrix but there need moderation on the hole project.
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: