Skip to content
Snippets Groups Projects
Commit cb1f4be4 authored by Melissa Lober's avatar Melissa Lober
Browse files

Fix run_example scripts

parent d6d95ad0
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,11 @@ d = {}
conn_params = {'replace_non_simulated_areas': 'het_poisson_stat',
'cc_weights_factor': 1.0, # run model in Ground State
'cc_weights_I_factor': 1.0}
network_params = {'N_scaling': 0.01,
'K_scaling': 0.01,
'fullscale_rates': os.path.join(base_path, 'tests/fullscale_rates.json')}
'fullscale_rates': os.path.join(base_path, 'tests/fullscale_rates.json'),
'connection_params': conn_params}
sim_params = {'t_sim': 2000.,
'num_processes': 1,
......
......@@ -21,8 +21,12 @@ resources, for instance on a compute cluster.
"""
d = {}
conn_params = {'cc_weights_factor': 1.0, # run model in Ground State
'cc_weights_I_factor': 1.0}
network_params = {'N_scaling': 1.,
'K_scaling': 1.}
'K_scaling': 1.,
'connection_params': conn_params}
sim_params = {'t_sim': 2000.,
'num_processes': 720,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment