diff --git a/doc/modules/extractors.rst b/doc/modules/extractors.rst index 1eeca9a325..ccc5d2a311 100644 --- a/doc/modules/extractors.rst +++ b/doc/modules/extractors.rst @@ -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 `_. diff --git a/doc/modules/motion_correction.rst b/doc/modules/motion_correction.rst index 8cffeebcf3..8934ae1ff6 100644 --- a/doc/modules/motion_correction.rst +++ b/doc/modules/motion_correction.rst @@ -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", @@ -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",