From 2b83caeb3fb132693ac5f049249578cc1f83fa32 Mon Sep 17 00:00:00 2001 From: Nathaniel Renegar Date: Sun, 24 Mar 2024 12:51:26 -0400 Subject: [PATCH 1/3] Update get_started.rst with info for reloading saved binaries --- doc/how_to/get_started.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/how_to/get_started.rst b/doc/how_to/get_started.rst index 625ebb52e4..e728179ed0 100644 --- a/doc/how_to/get_started.rst +++ b/doc/how_to/get_started.rst @@ -245,6 +245,7 @@ object to disk. BinaryFolderRecording: 32 channels - 32.0kHz - 1 segments - 320,000 samples - 10.00s float32 dtype - 39.06 MiB +To reload a preprocessed recording that was saved to disk, you can use ``load_extractor()`` function from the `Core` module. Now you are ready to spike sort using the ``spikeinterface.sorters`` module! Let’s first check which sorters are implemented and which are From d5ffe9fc83f504f40630b94d6d91b26951f624e8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 24 Mar 2024 16:52:51 +0000 Subject: [PATCH 2/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- doc/how_to/get_started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/how_to/get_started.rst b/doc/how_to/get_started.rst index e728179ed0..56d4dbe38d 100644 --- a/doc/how_to/get_started.rst +++ b/doc/how_to/get_started.rst @@ -245,7 +245,7 @@ object to disk. BinaryFolderRecording: 32 channels - 32.0kHz - 1 segments - 320,000 samples - 10.00s float32 dtype - 39.06 MiB -To reload a preprocessed recording that was saved to disk, you can use ``load_extractor()`` function from the `Core` module. +To reload a preprocessed recording that was saved to disk, you can use ``load_extractor()`` function from the `Core` module. Now you are ready to spike sort using the ``spikeinterface.sorters`` module! Let’s first check which sorters are implemented and which are From 32c86e09de1fc6e141b4622ae7030064d8c9237e Mon Sep 17 00:00:00 2001 From: Alessio Buccino Date: Mon, 25 Mar 2024 12:08:58 +0100 Subject: [PATCH 3/3] Propagate changes to examples/how_to --- doc/how_to/get_started.rst | 2 +- examples/how_to/get_started.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/how_to/get_started.rst b/doc/how_to/get_started.rst index 56d4dbe38d..93b2e3aed5 100644 --- a/doc/how_to/get_started.rst +++ b/doc/how_to/get_started.rst @@ -245,7 +245,7 @@ object to disk. BinaryFolderRecording: 32 channels - 32.0kHz - 1 segments - 320,000 samples - 10.00s float32 dtype - 39.06 MiB -To reload a preprocessed recording that was saved to disk, you can use ``load_extractor()`` function from the `Core` module. +To reload a preprocessed recording that was saved to disk, you can use ``load_extractor()`` function from the ``core`` module. Now you are ready to spike sort using the ``spikeinterface.sorters`` module! Let’s first check which sorters are implemented and which are diff --git a/examples/how_to/get_started.py b/examples/how_to/get_started.py index e6599e5dfa..c45987505e 100644 --- a/examples/how_to/get_started.py +++ b/examples/how_to/get_started.py @@ -159,6 +159,8 @@ print(recording_preprocessed) # - +# To reload a preprocessed recording that was saved to disk, you can use `load_extractor()` function from the `core` module. +# # Now you are ready to spike sort using the `spikeinterface.sorters` module! # Let's first check which sorters are implemented and which are installed