Skip to content

Commit 0edfc77

Browse files
committed
oups
1 parent 221e780 commit 0edfc77

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/spikeinterface/benchmark/tests/test_benchmark_clustering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_benchmark_clustering(create_cache_folder):
3838
peaks[dataset] = spikes
3939

4040
cases = {}
41-
for method in ["random_projections", "circus", "tdc_clustering"]:
41+
for method in ["random_projections", "circus", "tdc-clustering"]:
4242
cases[method] = {
4343
"label": f"{method} on toy",
4444
"dataset": "toy",

src/spikeinterface/sorters/internal/tridesclous2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def _run_from_folder(cls, sorter_output_folder, params, verbose):
184184
clustering_kwargs["clustering"] = params["clustering"].copy()
185185

186186
labels_set, clustering_label, extra_out = find_cluster_from_peaks(
187-
recording, peaks, method="tdc_clustering", method_kwargs=clustering_kwargs, extra_outputs=True, **job_kwargs
187+
recording, peaks, method="tdc-clustering", method_kwargs=clustering_kwargs, extra_outputs=True, **job_kwargs
188188
)
189189
peak_shifts = extra_out["peak_shifts"]
190190
new_peaks = peaks.copy()

src/spikeinterface/sortingcomponents/tests/test_clustering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def test_templates_from_svd(recording, peaks, job_kwargs):
116116
# peak_locations = run_peak_locations(recording, peaks, job_kwargs)
117117
# method = "position_and_pca"
118118
# method = "circus"
119-
# method = "tdc_clustering"
119+
# method = "tdc-clustering"
120120
# method = "random_projections"
121121

122122
# test_find_cluster_from_peaks(method, recording, peaks, peak_locations)

0 commit comments

Comments
 (0)