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
When I manipulate the value of the slider during the simulation everything is fine, but when I set the value and then press the play button afterwards, it doesn't react to the input.
To reproduce
Take this model:
model=nengo.Network()
withmodel:
a=nengo.Ensemble(n_neurons=10, dimensions=1,
neuron_type=nengo.LIF())
stim=nengo.Node(0)
nengo.Connection(stim, a)
Add the slider to the stim. Set stim to 1.
Add graph showing the value of a.
Run simulation.
Expected behavior
It should show value 1 on the a graph, it shows 0 instead.
Screenshots
Versions
OS: MacOS El Captain
Browser: chrome
Nengo GUI: 0.4.3
The text was updated successfully, but these errors were encountered:
Interesting! The current behaviour is that the value is reset at the begin of the simulation to whatever the initial value of the Node is. In this case you explicitly specified "0" as initial value.
I honestly don't know how this behaviour could be fixed without breaking other functionality.
Describe the bug
When I manipulate the value of the slider during the simulation everything is fine, but when I set the value and then press the play button afterwards, it doesn't react to the input.
To reproduce
Add the slider to the
stim
. Setstim
to 1.Add graph showing the value of
a
.Run simulation.
Expected behavior
It should show value 1 on the
a
graph, it shows 0 instead.Screenshots
Versions
The text was updated successfully, but these errors were encountered: