Skip to content
Snippets Groups Projects
Unverified Commit a4c704fc authored by Renan Oliveira Shimoura's avatar Renan Oliveira Shimoura Committed by GitHub
Browse files

Merge pull request #74 from mlober/Fix_MAM_fullscale_example

Fix run_example scripts
parents d6d95ad0 cb1f4be4
No related branches found
No related tags found
No related merge requests found
Pipeline #60345 failed with stage
in 10 minutes and 16 seconds
......@@ -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