Skip to content

Commit 4fab698

Browse files
committed
FIX _auto_example link
1 parent 95640e0 commit 4fab698

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

doc/create_notebooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import shutil
55

6-
archive_name = "_auto_examples/auto_examples_jupyter.zip"
6+
archive_name = "_auto_examples/_auto_examples_jupyter.zip"
77
if not os.path.exists(archive_name):
88
raise RuntimeError(
99
f"{archive_name} does not exist, please run `make html` first.")

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This website contains tutorials describing how to use the
1212
`voxelwise modeling framework <voxelwise_modeling.html>`_.
1313

1414
The tutorials consist of Python scripts, which are rendered in a `gallery of
15-
examples <auto_examples/index.html>`_. Each Python script is also available as
15+
examples <_auto_examples/index.html>`_. Each Python script is also available as
1616
a ``jupyter`` notebook (non-rendered). The tutorials are best explored in
1717
order, starting with the "Movies 3T tutorial".
1818

@@ -32,7 +32,7 @@ Tutorials
3232
:maxdepth: 2
3333

3434

35-
auto_examples/index
35+
_auto_examples/index
3636

3737
Documentation
3838
-------------

tutorials/movies_3T/00_download_vim4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
###############################################################################
3939
# We will only use the first subject in this tutorial, but you can run the same
40-
# analysis on the four other subjects. Uncomment the lines in ``DATAFILES``` to
40+
# analysis on the four other subjects. Uncomment the lines in ``DATAFILES`` to
4141
# download more subjects.
4242
#
4343
# We also skip the stimuli files, since the dataset provides two preprocessed

tutorials/movies_4T/00_download_vim2.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535

3636
###############################################################################
3737
# We will only use the first subject in this tutorial, but you can run the same
38-
# analysis on the twofour other subjects. Uncomment the lines in `DATAFILES` to
39-
# download more subjects, or to download the stimuli images.
38+
# analysis on the two other subjects. Uncomment the lines in ``DATAFILES`` to
39+
# download more subjects, or to download the anatomy files.
4040

4141
import getpass
4242

@@ -48,9 +48,9 @@
4848
# 'vim-2/VoxelResponses_subject2.tar.gz',
4949
# 'vim-2/VoxelResponses_subject3.tar.gz',
5050
# 'vim-2/anatomy.zip',
51-
'vim-2/checksums.md5',
52-
'vim-2/filelist.txt',
53-
'vim-2/docs/crcns-vim-2-data-description.pdf',
51+
# 'vim-2/checksums.md5',
52+
# 'vim-2/filelist.txt',
53+
# 'vim-2/docs/crcns-vim-2-data-description.pdf',
5454
]
5555

5656
###############################################################################

tutorials/notebooks/movies_3T/00_download_vim4.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"cell_type": "markdown",
5252
"metadata": {},
5353
"source": [
54-
"We will only use the first subject in this tutorial, but you can run the same\nanalysis on the four other subjects. Uncomment the lines in ``DATAFILES``` to\ndownload more subjects.\n\nWe also skip the stimuli files, since the dataset provides two preprocessed\nfeature spaces to perform voxelwise modeling without requiring the original\nstimuli.\n\n"
54+
"We will only use the first subject in this tutorial, but you can run the same\nanalysis on the four other subjects. Uncomment the lines in ``DATAFILES`` to\ndownload more subjects.\n\nWe also skip the stimuli files, since the dataset provides two preprocessed\nfeature spaces to perform voxelwise modeling without requiring the original\nstimuli.\n\n"
5555
]
5656
},
5757
{

tutorials/notebooks/movies_4T/00_download_vim2.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"cell_type": "markdown",
5252
"metadata": {},
5353
"source": [
54-
"We will only use the first subject in this tutorial, but you can run the same\nanalysis on the twofour other subjects. Uncomment the lines in `DATAFILES` to\ndownload more subjects, or to download the stimuli images.\n\n"
54+
"We will only use the first subject in this tutorial, but you can run the same\nanalysis on the two other subjects. Uncomment the lines in ``DATAFILES`` to\ndownload more subjects, or to download the anatomy files.\n\n"
5555
]
5656
},
5757
{
@@ -62,7 +62,7 @@
6262
},
6363
"outputs": [],
6464
"source": [
65-
"import getpass\n\nfrom voxelwise_tutorials.io import download_crcns\n\nDATAFILES = [\n 'vim-2/Stimuli.tar.gz',\n 'vim-2/VoxelResponses_subject1.tar.gz',\n # 'vim-2/VoxelResponses_subject2.tar.gz',\n # 'vim-2/VoxelResponses_subject3.tar.gz',\n # 'vim-2/anatomy.zip',\n 'vim-2/checksums.md5',\n 'vim-2/filelist.txt',\n 'vim-2/docs/crcns-vim-2-data-description.pdf',\n]"
65+
"import getpass\n\nfrom voxelwise_tutorials.io import download_crcns\n\nDATAFILES = [\n 'vim-2/Stimuli.tar.gz',\n 'vim-2/VoxelResponses_subject1.tar.gz',\n # 'vim-2/VoxelResponses_subject2.tar.gz',\n # 'vim-2/VoxelResponses_subject3.tar.gz',\n # 'vim-2/anatomy.zip',\n # 'vim-2/checksums.md5',\n # 'vim-2/filelist.txt',\n # 'vim-2/docs/crcns-vim-2-data-description.pdf',\n]"
6666
]
6767
},
6868
{

0 commit comments

Comments
 (0)