We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64cee6d commit 686ed53Copy full SHA for 686ed53
1 file changed
.github/scripts/test_kilosort4_ci.py
@@ -112,6 +112,9 @@
112
PARAMS_TO_TEST_DICT.update({"cluster_neighbors": 11})
113
PARAMETERS_NOT_AFFECTING_RESULTS.append("cluster_neighbors")
114
115
+if parse(kilosort.__version__) >= parse("4.0.37"):
116
+ PARAMS_TO_TEST_DICT.update({"max_cluster_subset": 20})
117
+
118
119
PARAMS_TO_TEST = list(PARAMS_TO_TEST_DICT.keys())
120
@@ -254,6 +257,8 @@ def test_initialize_ops_arguments(self):
254
257
"device",
255
258
"save_preprocessed_copy",
256
259
]
260
+ if parse(kilosort.__version__) >= parse("4.0.37"):
261
+ expected_arguments += ["gui_mode"]
262
263
self._check_arguments(
264
initialize_ops,
0 commit comments