-
Notifications
You must be signed in to change notification settings - Fork 12
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
Is there anything like nest.ResetNetwork? #3
Comments
Unfortunately currently there is no reset function in NeuronGPU. As a possible workaround, if you are working in bash you can run an external bash script that launches the python script several times. If you need the loop step index, you can use a template python script and a substitution, as in the following example:
file
To execute it, type: |
Thank you for the response!
Then we can run the whole process by BTW, is NeuronGPU still actively developed? It is friendly to use for those who are familiar with nest and python. I think this is one important advantage above GeNN. I do look forward to more improvement :P |
Thank you for the interesting and useful solution! |
Thank you very much ! |
I would like to run the simulation under different conditions automatically with a loop. It looks like this :
However, when a simulation is completed, the next one would be stuck at
net.create()
, asValueError: Nodes cannot be created after calibration
.I think we need a reset operation like
nest.ResetNetwork
to initialize the network before we start to create it again, but I could not find it. Is there anything like this, please?The text was updated successfully, but these errors were encountered: