You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added Manual dataset download
* Modified formatting
* Added Specific Commands in different Cells
* Added a different list with all the notebook commands
* Correct typo
* Refactored Code
* Refactored Code
* Fixed failing null error
* Fix Typo for function
* Removed redundant if condition
* Fix lint
* Renamed variable nb_commands to nb_cells
Copy file name to clipboardExpand all lines: src/templates/template-vision-segmentation/README.md
+16
Original file line number
Diff line number
Diff line change
@@ -4,4 +4,20 @@
4
4
5
5
This is the segmentation template by Code-Generator using `deeplabv3_resnet101` and `cifar10` dataset from TorchVision and training is powered by PyTorch and PyTorch-Ignite.
6
6
7
+
**Note:**
8
+
The dataset used in this template is quite substantial, with a size of several GBs and automatically downloading it can be seen as an unexpected behaviour. To prevent unexpected behavior or excessive bandwidth usage, the automatic downloading of the dataset has been disabled by default.
9
+
10
+
To download the dataset:
11
+
12
+
```python
13
+
python -c "from data import download_datasets; download_datasets('/path/to/data')"
0 commit comments