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
- Update notebooks for recent Colab and Python versions.
- Update OD and Semseg documentation.
- Deprecate `allocate_inputs` and add new flags.
- Log errors for external tools.
Signed-off-by: khaoula boutiche <[email protected]>
These masks are integer masks with indices representing different classes. They should be placed in the same directory structure as the original Pascal VOC 2012 dataset.
Copy file name to clipboardExpand all lines: semantic_segmentation/src/README.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,13 +150,8 @@ dataset:
150
150
```
151
151
The `name` attribute is mandatory. To date, the unique accepted values without the `class_names`: `pascal_voc`, `indoor_pascal_voc`, `person_pascal_voc`, `outdoor_pascal_voc`. However, if using a different dataset and naming convention, the `class_name` attribute should be provided.
152
152
153
-
**Please follow the [PASCAL VOC 2012 tutorial](../datasets/pascal_voc_2012/README.md) to have more training masks (about 10,582) and a `trainaug.txt` file containing the IDs of the new training masks. Or, the [COCO 2017 PASCAL VOC 2012 tutorial](../datasets/coco_2017_pascal_voc_2012/README.md) to create COCO 2017 + PASCAL VOC 2012 dataset, and the [n_class_coco_2017_pascal_voc_2012 tutorial](../datasets/n_class_coco_2017_pascal_voc_2012/README.md) to create the indoor_pascal_voc, outdoor_pascal_voc, person_pascal_voc dataset.**
154
-
155
-
---
156
-
157
153
The `name` attribute is mandatory. To date, a unique value is accepted: `pascal_voc`. This parameter is used in the data_loader in order to correctly construct each dataset expecting [PASCAL VOC 2012](http://host.robots.ox.ac.uk/pascal/VOC/voc2012/) structure. In the future, it could be extended to other dataset types.
158
154
159
-
**Please follow the [PASCAL VOC 2012 tutorial](../datasets/pascal_voc_2012/README.md) to have more training masks (about 10,582) and a `trainaug.txt` file containing the IDs of the new training masks. Or, the [COCO 2017 PASCAL VOC 2012 tutorial](../datasets/coco_2017_pascal_voc_2012/README.md) to create COCO 2017 + PASCAL VOC 2012 dataset.**
160
155
161
156
To adhere to the PASCAL VOC 2012 structure, we need to establish three paths for each set. This setup will automatically retrieve the specified images from the training path's JPEG images directory and the corresponding masks from the training masks path.
162
157
@@ -168,6 +163,8 @@ the validation set. The `seed` attribute specifies the seed value to use for ran
168
163
The 3 quantization path attributes are used to specify a dataset for the quantization process. If these attributes are not provided and a training set is available, the training set is used for the quantization.
169
164
However, training sets can be quite large and the quantization process can take a long time to run. To avoid this issue, you can set the `quantization_split` attribute to use only a random portion of the dataset for quantization.
170
165
166
+
**Please follow the [PASCAL VOC 2012 tutorial](../datasets/pascal_voc_2012/README.md) to have more training masks (about 10,582) and a `trainaug.txt` file containing the IDs of the new training masks. Or, the [COCO 2017 PASCAL VOC 2012 tutorial](../datasets/coco_2017_pascal_voc_2012/README.md) to create COCO 2017 + PASCAL VOC 2012 dataset, and the [n_class_coco_2017_pascal_voc_2012 tutorial](../datasets/n_class_coco_2017_pascal_voc_2012/README.md) to create the indoor_pascal_voc, outdoor_pascal_voc, person_pascal_voc dataset.**
0 commit comments