We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a38588 commit d633245Copy full SHA for d633245
1 file changed
examples/external_devices_examples/live_examples/balanced_random_live_rate.py
@@ -19,7 +19,9 @@
19
from pyNN.random import RandomDistribution
20
from pyNN.utility.plotting import Figure, Panel
21
22
-p.setup(timestep=0.1)
+# We need a time scale factor here as we are interacting live, so too fast
23
+# otherwise!
24
+p.setup(timestep=0.1, time_scale_factor=1.0)
25
p.set_number_of_neurons_per_core(p.SpikeSourcePoisson, 50)
26
n_neurons = 500
27
n_exc = int(round(n_neurons * 0.8))
0 commit comments