Skip to content

Commit

Permalink
Merge branch 'doc-kwarg' of https://github.com/zm711/spikeinterface i…
Browse files Browse the repository at this point in the history
…nto doc-kwarg
  • Loading branch information
zm711 committed Sep 29, 2023
2 parents 714645c + 5140a04 commit f0df9a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/modules/extractors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Overview

The :py:mod:`~spikeinterface.extractors` module allows you to load :py:class:`~spikeinterface.core.BaseRecording`,
:py:class:`~spikeinterface.core.BaseSorting`, and :py:class:`~spikeinterface.core.BaseEvent` objects from
a large variety of acquisition systems and spike sorting outputs.
a large variety of acquisition systems and spike sorting outputs.

Most of the :code:`Recording` classes are implemented by wrapping the
`NEO rawio implementation <https://github.com/NeuralEnsemble/python-neo/tree/master/neo/rawio>`_.
Expand Down
8 changes: 4 additions & 4 deletions doc/modules/motion_correction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ The high-level :py:func:`~spikeinterface.preprocessing.correct_motion()` is inte
max_distance_um=150.0, **job_kwargs)
# Step 2: motion inference
motion, temporal_bins, spatial_bins = estimate_motion(recording=rec,
peaks=peaks,
motion, temporal_bins, spatial_bins = estimate_motion(recording=rec,
peaks=peaks,
peak_locations=peak_locations,
method="decentralized",
direction="y",
Expand All @@ -175,8 +175,8 @@ The high-level :py:func:`~spikeinterface.preprocessing.correct_motion()` is inte
# Step 3: motion interpolation
# this step is lazy
rec_corrected = interpolate_motion(recording=rec, motion=motion,
temporal_bins=temporal_bins,
rec_corrected = interpolate_motion(recording=rec, motion=motion,
temporal_bins=temporal_bins,
spatial_bins=spatial_bins,
border_mode="remove_channels",
spatial_interpolation_method="kriging",
Expand Down

0 comments on commit f0df9a3

Please sign in to comment.