-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added run scripts for the various configurations used in the paper
- Loading branch information
Showing
7 changed files
with
167 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
# Alternate hypothesis: E -> E plasticity only | ||
|
||
## Online phase (training) | ||
|
||
mpirun python3 run_training.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_segs_eegrad_stdp_ee_mf_mec.yaml \ | ||
--arena-config arenaparams_uniform.yaml \ | ||
-c 0110_segs_eegrad_stdp_ee_mf_mec_lec_input_uniform \ | ||
--data-prefix data \ | ||
--save-weights-every 5 | ||
|
||
## Offline phase | ||
|
||
mpirun python3 run_ripple.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_ripple.yaml \ | ||
--arena-config arenaparams_ripple_uniform_high.yaml \ | ||
-c ripple_0110_segs_eegrad_stdp_ee_mf_mec_lec_input_uniform \ | ||
--saved-weights-path data/0110_segs_eegrad_stdp_ee_mf_mec_lec_input_uniform-cue-ee-ei-nlaps-25-dt-zerodot1-scale-2-v1.npz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
# Alternate hypothesis: E -> E and E -> I plasticity only | ||
|
||
## Online phase (training) | ||
|
||
mpirun python3 run_training.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_segs_eegrad_stdp_ee_ei_mf_mec.yaml \ | ||
--arena-config arenaparams_uniform.yaml \ | ||
-c 0110_segs_eegrad_stdp_ee_ei_mf_mec_lec_input_uniform \ | ||
--data-prefix data \ | ||
--save-weights-every 5 | ||
|
||
## Offline phase | ||
|
||
mpirun python3 run_ripple.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_ripple.yaml \ | ||
--arena-config arenaparams_ripple_uniform_high.yaml \ | ||
-c ripple_0110_segs_eegrad_stdp_ee_ei_mf_mec_lec_input_uniform \ | ||
--saved-weights-path data/0110_segs_eegrad_stdp_ee_ei_mf_mec_lec_input_uniform-cue-ee-ei-nlaps-25-dt-zerodot1-scale-2-v1.npz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# Baseline model configuration | ||
|
||
## Online phase (training) | ||
|
||
mpirun python3 run_training.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_segs_eegrad_stdp_ee_ie_mf_mec_lec.yaml \ | ||
--arena-config arenaparams_uniform.yaml \ | ||
-c 0101_segs_eegrad_stdp_ee_ie_mf_mec_lec_input_uniform \ | ||
--data-prefix data \ | ||
--save-weights-every 5 | ||
|
||
## Offline phase | ||
|
||
mpirun python3 run_ripple.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_ripple.yaml \ | ||
--arena-config arenaparams_ripple_uniform_high.yaml \ | ||
-c ripple_0101_segs_eegrad_stdp_ee_ie_mf_mec_lec_input_uniform \ | ||
--saved-weights-path data/0101_segs_eegrad_stdp_ee_ie_mf_mec_lec_input_uniform-cue-ee-ei-nlaps-25-dt-zerodot1-scale-2-v1.npz | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
# Log-normal distribution of firing rates configuration | ||
|
||
## Online phase (training) | ||
|
||
mpirun python3 run_training.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_grads_stdp_ee_ie_mf_mec_lec_ln.yaml \ | ||
--arena-config arenaparams_uniform.yaml \ | ||
-c 0117_grads_stdp_ee_ie_mf_mec_lec_ln_input_uniform \ | ||
--data-prefix data \ | ||
--save-weights-every 5 | ||
|
||
## Offline phase | ||
|
||
mpirun python3 run_ripple.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_ripple.yaml \ | ||
--arena-config arenaparams_ripple_uniform_high.yaml \ | ||
-c ripple_0117_grads_stdp_ee_ie_mf_mec_lec_ln_input_uniform \ | ||
--saved-weights-path data/0108_grads_stdp_ee_ie_mf_mec_lec_ln_input_uniform-cue-ee-ei-nlaps-25-dt-zerodot1-scale-2-v1.npz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
# Mixed MEC/LEC input model configuration | ||
|
||
## Online phase (training) | ||
|
||
mpirun python3 run_training.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_grads_stdp_ee_ie_mf_mec_lec.yaml \ | ||
--arena-config arenaparams_uniform.yaml \ | ||
-c 0108_grads_stdp_ee_ie_mf_mec_lec_input_uniform \ | ||
--data-prefix data \ | ||
--save-weights-every 5 | ||
|
||
## Offline phase | ||
|
||
mpirun python3 run_ripple.py \ | ||
--model-home $PWD \ | ||
--circuit-config circuitparams_ripple.yaml \ | ||
--arena-config arenaparams_ripple_uniform_high.yaml \ | ||
-c ripple_0108_grads_stdp_ee_ie_mf_mec_lec_input_uniform \ | ||
--saved-weights-path data/0108_grads_stdp_ee_ie_mf_mec_lec_input_uniform-cue-ee-ei-nlaps-25-dt-zerodot1-scale-2-v1.npz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters