We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40ad3fb + 4c9afe8 commit 53e02e2Copy full SHA for 53e02e2
src/spikeinterface/sortingcomponents/motion/medicine.py
@@ -35,6 +35,8 @@ def run(
35
extra,
36
bin_s=1.0,
37
## medicine specific kwargs propagated to the lib
38
+ output_dir=None,
39
+ plot_figures=False,
40
motion_bound=800,
41
time_kernel_width=30,
42
activity_network_hidden_features=(256, 256),
@@ -78,8 +80,8 @@ def run(
78
80
peak_times=peaks["sample_index"] / recording.get_sampling_frequency(),
79
81
time_bin_size=bin_s,
82
num_depth_bins=num_depth_bins,
- output_dir=None,
- plot_figures=False,
83
+ output_dir=output_dir,
84
+ plot_figures=plot_figures,
85
motion_bound=motion_bound,
86
time_kernel_width=time_kernel_width,
87
activity_network_hidden_features=activity_network_hidden_features,
0 commit comments