This is an instruction for setting up PASCAL VOC dataset.
- Download PASCAL VOC 2012.
$ bash scripts/setup_voc12.sh [PATH TO DOWNLOAD]
/VOCdevkit
└── VOC2012
├── Annotations
├── ImageSets
│ └── Segmentation
├── JPEGImages
├── SegmentationObject
└── SegmentationClass
- Add SBD augmentated training data as
SegmentationClassAug
.
- Download official image sets as
ImageSets/SegmentationAug
.
- From https://ucla.app.box.com/s/rd9z2xvwsfpksi7mi08i2xqrj7ab4keb/file/55053033642
- Or https://github.com/kazuto1011/deeplab-pytorch/files/2945588/list.zip
/VOCdevkit
└── VOC2012
├── Annotations
├── ImageSets
│ ├── Segmentation
│ └── SegmentationAug # ADDED!!
│ ├── test.txt
│ ├── train_aug.txt
│ ├── train.txt
│ ├── trainval_aug.txt
│ ├── trainval.txt
│ └── val.txt
├── JPEGImages
├── SegmentationObject
├── SegmentationClass
└── SegmentationClassAug # ADDED!!
└── 2007_000032.png
- Set the path to the dataset in
configs/voc12.yaml
.
DATASET: voc12
ROOT: # <- Write here
...