Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions docs/keypoint_moseq_colab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@
"metadata": {},
"source": [
"```{warning}\n",
"Reindexing is only applied to the checkpoint file. Therefore, if you perform this step after extracting the modeling results or generating vizualizations, then those steps must be repeated.\n",
"Reindexing is only applied to the checkpoint file, so you must re-load the checkpoint before proceeding to extract results. Furthermore, if you perform this step after extracting the modeling results or generating vizualizations, then those steps must be repeated.\n",
"```"
]
},
Expand Down Expand Up @@ -490,7 +490,7 @@
"metadata": {},
"outputs": [],
"source": [
"# load the most recent model checkpoint\n",
"# load the most recent model checkpoint (which in this case has also been reindixed)\n",
"model, data, metadata, current_iter = kpms.load_checkpoint(project_dir, model_name)\n",
"\n",
"# extract results\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/FAQs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ Below we provide two code recipes to get around these issues. The first recipe i

.. code-block:: python

heading = {k: np.zeros_like(v) for k in heading.items()}
heading = {k: np.zeros_like(v) for k,v in heading.items()}


Why are there only trajectory plots for a subset of syllables?
Expand Down
Loading