Skip to content

Commit

Permalink
Adding overwrite_config option to build_env_pointnet()
Browse files Browse the repository at this point in the history
  • Loading branch information
beaherrera committed Oct 28, 2024
1 parent 26af0a0 commit 1698d2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bmtk/utils/sim_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def build_env_bionet(base_dir='.', network_dir=None, components_dir=None, node_s


def build_env_pointnet(base_dir='.', network_dir=None, components_dir=None, node_sets_file=None, include_examples=False,
tstart=0.0, tstop=1000.0, dt=0.001, dL=20.0, spikes_threshold=-15.0, nsteps_block=5000,
overwrite_config=False, tstart=0.0, tstop=1000.0, dt=0.001, dL=20.0, spikes_threshold=-15.0, nsteps_block=5000,
v_init=-80.0, celsius=34.0,
report_vars=[], report_nodes=None, current_clamp=None,
spikes_inputs=None,
Expand All @@ -700,7 +700,8 @@ def build_env_pointnet(base_dir='.', network_dir=None, components_dir=None, node
report_vars=report_vars, report_nodes=report_nodes, current_clamp=current_clamp,
spikes_inputs=spikes_inputs,
tstart=tstart, tstop=tstop, dt=dt, dL=dL, spikes_threshold=spikes_threshold,
nsteps_block=nsteps_block, v_init=v_init, celsius=celsius)
nsteps_block=nsteps_block, v_init=v_init, celsius=celsius,
overwrite_config=overwrite_config)


def build_env_filternet(base_dir='.', network_dir=None, components_dir=None,
Expand Down

0 comments on commit 1698d2c

Please sign in to comment.