Skip to content

Commit 01d9d8c

Browse files
committed
Default smoothing params to None
1 parent 87255a5 commit 01d9d8c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pynapple/process/decoding.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def decode_1d(
1919
bin_size,
2020
time_units="s",
2121
feature=None,
22-
smoothing_windowsize=1,
23-
smoothing_std=1,
22+
smoothing_windowsize=None,
23+
smoothing_std=None,
2424
norm=True,
2525
):
2626
"""
@@ -138,8 +138,8 @@ def decode_2d(
138138
xy,
139139
time_units="s",
140140
features=None,
141-
smoothing_windowsize=1,
142-
smoothing_std=1,
141+
smoothing_windowsize=None,
142+
smoothing_std=None,
143143
norm=True,
144144
):
145145
"""

0 commit comments

Comments
 (0)