Skip to content

Commit 97beb18

Browse files
authored
Merge pull request #4187 from SpikeInterface/fix-ks4-tests
Fix ks4 tests
2 parents 3642020 + 3f66d4c commit 97beb18

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/test_kilosort4_ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"x_centers": 5,
7777
"binning_depth": 1,
7878
"drift_smoothing": [250, 250, 250],
79-
"artifact_threshold": 200,
79+
"artifact_threshold": 500,
8080
"ccg_threshold": 1e12,
8181
"acg_threshold": 1e12,
8282
"cluster_downsampling": 2,

src/spikeinterface/sorters/external/kilosort4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def _dynamic_params(cls):
9595
# we skip some parameters that are not relevant for the user
9696
# n_chan_bin/sampling_frequency: retrieved from the recording
9797
# tmin/tmax: same ase time/frame_slice in SpikeInterface
98-
skip_main = ["n_chan_bin", "sampling_frequency", "tmin", "tmax"]
98+
skip_main = ["fs", "n_chan_bin", "tmin", "tmax"]
9999
default_params = {}
100100
default_params_descriptions = {}
101101
ks_params = ks.parameters.MAIN_PARAMETERS.copy()

0 commit comments

Comments
 (0)