Skip to content

Commit 2a9af6f

Browse files
lamblinnotoraptor
authored andcommitted
Formatting
1 parent 5a62c66 commit 2a9af6f

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

doc/cnn_1D_segm.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,12 @@ The FCN implementation can be found in the following file:
151151
* `fcn1D.py <../code/cnn_1D_segm/fcn1D.py>`_ : Main script. Defines the model.
152152
* `train_fcn1D.py <../code/cnn_1D_segm/train_fcn1D.py>`_ : Training loop
153153

154-
Change the *dataset_loaders/config.ini* file and add the right path for the dataset:
154+
Change the ``dataset_loaders/config.ini`` file and add the right path for the dataset:
155155

156-
[cortical_layers]
156+
.. code-block:: cfg
157157

158-
shared_path = /path/to/DeepLearningTutorials/data/cortical_layers/
158+
[cortical_layers]
159+
shared_path = /path/to/DeepLearningTutorials/data/cortical_layers/
159160

160161

161162
First define a *bn+relu+conv* block that returns the name of the last layer of

doc/fcn_2D_segm.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,12 @@ The FCN-8 implementation can be found in the following file:
182182
The user must install `Lasagne <http://lasagne.readthedocs.io/en/latest/user/installation.html>`_ ,
183183
and clone the GitHub repo `Dataset Loaders <https://github.com/fvisin/dataset_loaders>`_.
184184

185-
Change the *dataset_loaders/config.ini* file and add the right path for the dataset:
185+
Change the ``dataset_loaders/config.ini`` file and add the right path for the dataset:
186186

187-
[polyps912]
187+
.. code-block:: cfg
188188

189-
shared_path = /path/to/DeepLearningTutorials/data/polyps_split7/
189+
[polyps912]
190+
shared_path = /path/to/DeepLearningTutorials/data/polyps_split7/
190191

191192
We used Lasagne layers, as you can see in the code below.
192193

doc/unet.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ The user must install `Lasagne <http://lasagne.readthedocs.io/en/latest/user/ins
113113
`SimpleITK <http://www.simpleitk.org/SimpleITK/resources/software.html>`_ and
114114
clone the GitHub repo `Dataset Loaders <https://github.com/fvisin/dataset_loaders>`_.
115115

116-
Change the *dataset_loaders/config.ini* file to set the right path for the dataset:
116+
Change the ``dataset_loaders/config.ini`` file to set the right path for the dataset:
117117

118-
[isbi_em_stacks]
118+
.. code-block:: cfg
119119

120-
121-
shared_path = /path/to/DeepLearningTutorials/data/isbi_challenge_em_stacks
120+
[isbi_em_stacks]
121+
shared_path = /path/to/DeepLearningTutorials/data/isbi_challenge_em_stacks
122122

123123

124124
The user can now build a U-Net with a specified number of input channels and number of classes.

0 commit comments

Comments
 (0)