Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yger committed Nov 17, 2023
1 parent e1db4a8 commit 3b514fe
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/spikeinterface/sortingcomponents/matching/circus.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,20 +495,22 @@ class CircusOMPSVDPeeler(BaseTemplateMatchingEngine):
amplitude: tuple
(Minimal, Maximal) amplitudes allowed for every template
omp_min_sps: float
Stopping criteria of the OMP algorithm, in percentage of the norm
random_chunk_kwargs: dict
Parameters for computing noise levels, if not provided (sub optimal)
Stopping criteria of the OMP algorithm, as relative error
sparse_kwargs: dict
Parameters to extract a sparsity mask from the waveform_extractor, if not
already sparse.
rank: int
Number of components used internally by the SVD (default 5)
vicinity: int
Size of the area surrounding a spike to perform modification (expressed in terms
of template temporal width)
-----
"""

_default_params = {
"amplitudes": [0.6, 1.4],
"omp_min_sps": 5e-5,
"waveform_extractor": None,
"random_chunk_kwargs": {},
"rank": 5,
"sparse_kwargs": {"method": "ptp", "threshold": 1},
"ignored_ids": [],
Expand Down

0 comments on commit 3b514fe

Please sign in to comment.