We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b7032 commit f43a055Copy full SHA for f43a055
exampleRun/ExampleActivity.png
450 KB
load_data.py
@@ -11,10 +11,12 @@
11
12
13
def reload_single_run(show_plot=True, verbose=False):
14
- N_muscles = 24 # Number of muscles alongside the body
+ N_muscles_perside = 24 # Number of muscles alongside the body
15
+ N_muscles = N_muscles_perside * 2
16
N_units = 10 # Number of neural units in VNC
17
N_neuronsperunit = 6 # Number of neurons in a VNC neural unit (6 neurons)
- N_stretchrec = 10 # Number of stretch receptors
18
+ N_stretchrec_units = 10 # Number of stretch receptors
19
+ N_stretchrec = N_stretchrec_units * 4 # Number of stretch receptors
20
21
N_neurons = N_neuronsperunit * N_units
22
0 commit comments