-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add connectivity plot to notebook, misc. downscale experiments, move …
…where to load spiking in analysis.py
- Loading branch information
Showing
4 changed files
with
579 additions
and
47 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
misc/experiments/humam_downscale_examples/experiment_downscale_chi1.0.py
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,31 @@ | ||
# Overwrite values of src/default_net_params.py | ||
net_params = { | ||
'N_scaling': 0.005, | ||
'K_scaling': 0.005, | ||
'fullscale_rates': './simulated_data/base_theory_rates.pkl', | ||
'scaling_type': 'linear', | ||
'scaling_factors_recurrent': { | ||
# Scale cortico cortical excitatory on excitatory weights | ||
'cc_scalingEtoE': 1.0, | ||
# Scale cortico cortical excitatory on inhibitory weights | ||
'cc_scalingEtoI': 1.0*2.0, | ||
} | ||
} | ||
|
||
# Overwrite values of src/default_sim_params.py | ||
sim_params = { | ||
't_sim': 2500.0, | ||
'master_seed': 2903 | ||
} | ||
|
||
# Parameters for the analysis | ||
ana_params = { | ||
'plotRasterArea': { | ||
'fraction': 0.5, | ||
'low': 2000, | ||
'high': 2500 | ||
}, | ||
'functconn_corr': { | ||
'exclude_diagonal': False | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
misc/experiments/humam_downscale_examples/experiment_downscale_chi2.5.py
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,31 @@ | ||
# Overwrite values of src/default_net_params.py | ||
net_params = { | ||
'N_scaling': 0.005, | ||
'K_scaling': 0.005, | ||
'fullscale_rates': './simulated_data/base_theory_rates.pkl', | ||
'scaling_type': 'linear', | ||
'scaling_factors_recurrent': { | ||
# Scale cortico cortical excitatory on excitatory weights | ||
'cc_scalingEtoE': 2.5, | ||
# Scale cortico cortical excitatory on inhibitory weights | ||
'cc_scalingEtoI': 2.5*2.0, | ||
} | ||
} | ||
|
||
# Overwrite values of src/default_sim_params.py | ||
sim_params = { | ||
't_sim': 2500.0, | ||
'master_seed': 2903 | ||
} | ||
|
||
# Parameters for the analysis | ||
ana_params = { | ||
'plotRasterArea': { | ||
'fraction': 0.5, | ||
'low': 2000, | ||
'high': 2500 | ||
}, | ||
'functconn_corr': { | ||
'exclude_diagonal': False | ||
} | ||
} |
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