Skip to content

Commit

Permalink
MAINT: Chainging time steps. Removing seedore from tonic input bias
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilo9999 committed May 23, 2024
1 parent eeb9040 commit eed79e3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions hnn_core/gui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1024,8 +1024,7 @@ def _get_tonic_widget(name, layout, style, data=None):
default_data = {
'amplitude': 0,
't0': 0,
'tstop': 0,
'seedcore': 14,
'tstop': 0
}

cell_types = ['L2_basket', 'L2_pyramidal', 'L5_basket', 'L5_pyramidal']
Expand All @@ -1044,10 +1043,10 @@ def _get_tonic_widget(name, layout, style, data=None):

start_times = BoundedFloatText(
value=deepcopy(default_data['t0']), description="Start time",
min=0, max=1e6, step=0.01, **kwargs)
min=0, max=1e6, step=1.0, **kwargs)
stop_times = BoundedFloatText(
value=deepcopy(default_data['tstop']), description="Stop time",
min=-1, max=1e6, step=0.01, **kwargs)
min=-1, max=1e6, step=1.0, **kwargs)

widgets_dict = {
'amplitude': amplitudes,
Expand Down

0 comments on commit eed79e3

Please sign in to comment.