File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff 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
161162First define a *bn+relu+conv* block that returns the name of the last layer of
Original file line number Diff line number Diff line change @@ -182,11 +182,12 @@ The FCN-8 implementation can be found in the following file:
182182The user must install `Lasagne <http://lasagne.readthedocs.io/en/latest/user/installation.html>`_ ,
183183and 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
191192We used Lasagne layers, as you can see in the code below.
192193
Original file line number Diff line number Diff 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
114114clone 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
124124The user can now build a U-Net with a specified number of input channels and number of classes.
You can’t perform that action at this time.
0 commit comments