Skip to content

Commit

Permalink
test_multisortingcomparison.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed May 29, 2024
1 parent 0968ba5 commit 17d08e5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import pytest
import numpy as np

from spikeinterface.extractors import NumpySorting, toy_example
from spikeinterface.core import generate_ground_truth_recording
from spikeinterface.extractors import NumpySorting
from spikeinterface.comparison import compare_multiple_sorters, MultiSortingComparison

if hasattr(pytest, "global_test_folder"):
Expand Down Expand Up @@ -72,7 +73,7 @@ def test_compare_multiple_sorters():

def test_compare_multi_segment():
num_segments = 3
_, sort = toy_example(num_segments=num_segments)
_, sort = generate_ground_truth_recording(durations=[10] * num_segments)

cmp_multi = compare_multiple_sorters([sort, sort, sort])

Expand Down

0 comments on commit 17d08e5

Please sign in to comment.