Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
8793229
wip: start big metric refactoring
alejoe91 Oct 8, 2025
f71ae91
wip
alejoe91 Oct 8, 2025
b7445be
template metrics done!
alejoe91 Oct 9, 2025
83b8de2
remove template_metrics_old
alejoe91 Oct 9, 2025
a38cfa2
wip quality metrics
alejoe91 Oct 10, 2025
bbdd974
wip
alejoe91 Oct 13, 2025
bf4e24c
Fix metric dtypes and template metric tests
alejoe91 Oct 14, 2025
50bf11f
update tests
alejoe91 Oct 21, 2025
983e5d5
Fix (core) tests
alejoe91 Oct 22, 2025
e4f2cfe
Remove pandas from template tests
alejoe91 Oct 22, 2025
6602f17
Add metrics_to_compute params (but need to check behavior)
alejoe91 Oct 22, 2025
5c55124
Fix markers and start docs refactor
alejoe91 Oct 23, 2025
13e1ef9
Clean up CI and [metrics] install
alejoe91 Oct 23, 2025
5ee3085
Update src/spikeinterface/core/sortinganalyzer.py
alejoe91 Oct 23, 2025
0b4aa0e
Fixes after code review
alejoe91 Oct 23, 2025
cdc4e18
wip docs
alejoe91 Oct 23, 2025
79461b5
more docs!
alejoe91 Oct 23, 2025
07ba325
debug pca tests
alejoe91 Oct 23, 2025
f2c2449
Merge branch 'main' of github.com:SpikeInterface/spikeinterface into …
alejoe91 Oct 30, 2025
40b9d00
handle deprecated modules
alejoe91 Oct 30, 2025
420e879
Use explicit get_*_params functions
alejoe91 Oct 30, 2025
daed30e
Remove comment
alejoe91 Oct 30, 2025
26791f4
wip: fix required extensions and tests
alejoe91 Oct 30, 2025
b10dcea
Remove _set_data
alejoe91 Oct 30, 2025
fc02101
Add common _cast_metrics and fix most tests
alejoe91 Oct 30, 2025
6adef7e
expose seed param for nn_advanced
alejoe91 Oct 30, 2025
206412a
Fix curation tests
alejoe91 Oct 31, 2025
8b66f51
Fix docs
alejoe91 Oct 31, 2025
415e642
Update overview diagram
alejoe91 Oct 31, 2025
f3eb9c6
Compute spike amplitudes for IBL export tests
alejoe91 Oct 31, 2025
90300a1
Unify mahlanobis metrics in docs
alejoe91 Oct 31, 2025
26b4f17
Merge branch 'main' of github.com:SpikeInterface/spikeinterface into …
alejoe91 Nov 12, 2025
e9c068b
feedback from Chris
alejoe91 Nov 12, 2025
22eecb4
Fix conflicts
alejoe91 Nov 12, 2025
72c56be
Merge branch 'main' into refactor-metrics
alejoe91 Nov 25, 2025
1a00220
Merge branch 'main' into refactor-metrics
alejoe91 Nov 25, 2025
d88c9f9
trigger
alejoe91 Nov 25, 2025
a62b2b2
Rename some metric classes and handle back-compatible column names
alejoe91 Nov 25, 2025
ea88a8c
Don't use sorting_analyzer.recording
alejoe91 Nov 25, 2025
403e81a
oups
alejoe91 Nov 25, 2025
b8badb9
Fix docs
alejoe91 Nov 25, 2025
f149fc8
fix naming in tests
alejoe91 Nov 25, 2025
5e93ff2
Merge branch 'main' into refactor-metrics
alejoe91 Nov 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/get_started/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
import spikeinterface.preprocessing as spre
import spikeinterface.sorters as ss
import spikeinterface.postprocessing as spost
import spikeinterface.qualitymetrics as sqm
import spikeinterface.metrics as sqm
import spikeinterface.comparison as sc
import spikeinterface.exporters as sexp
import spikeinterface.curation as scur
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

import spikeinterface.core as si
from spikeinterface.qualitymetrics import (
from spikeinterface.metrics import (
compute_snrs,
compute_firing_rates,
compute_isi_violations,
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/qualitymetrics/plot_4_curation.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import spikeinterface.core as si

from spikeinterface.qualitymetrics import compute_quality_metrics
from spikeinterface.metrics import compute_quality_metrics


##############################################################################
Expand Down
Loading
Loading