This page provides basic tutorials about the usage of PCAN. For installation instructions, please see INSTALL.md.
We present an example based on BDD100K dataset. Please first download the images and annotations from the official website. We use detection
set, tracking
set, instance seg
set and tracking & seg
set for training, and validate our method on tracking & seg
set.
For more details about the dataset, please refer to the offial documentation.
On the offical download page, the required data and annotations are
detection
set images:Images (100k)
detection
set annotations:Detection 2020 Labels (det_20_labels)
tracking
set images:MOT 2020 Data (images20-track-*.zip)
tracking
set annotations:MOT 2020 Labels (box_track_20_labels)
instance seg
set images:Images (10k)
instance seg
set annotations:Instance segmentation Labels (ins_seg_labels)
tracking & seg
set images:MOTS 2020 Data (seg_track_20_images)
tracking & seg
set annotations:MOTS 2020 Labels (seg_track_20_labels)
we also provide pre-converted coco format jsons for downloading if you want to skip the following transformation process to COCO-style.
To organize the annotations for training and inference, we implement a dataset API that is similiar to COCO-style.
After downloaded the annotations, please transform the offical annotation files to CocoVID style as follows.
First, uncompress the downloaded annotation file and you will obtain a folder named bdd100k
.
Install repo BDD100K data api.
To convert the detection set, you can do as
mkdir data/bdd/labels/det_20
python -m bdd100k.label.to_coco -m det -i data/bdd/labels/det_20/det_${SET_NAME}.json -o data/bdd/labels/det_20/det_${SET_NAME}_cocofmt.json
To convert the tracking
set, you can do as
mkdir data/bdd/labels/box_track_20
python -m bdd100k.label.to_coco -m box_track -i bdd100k/labels/box_track_20/${SET_NAME} -o data/bdd/labels/box_track_20/box_track_${SET_NAME}_cocofmt.json
For instance segmentation
and segmentation tracking
, converting from “JOSN + Bitmasks” and from “Bitmask” are both supported. Use this command:
python3 -m bdd100k.label.to_coco -m ins_seg|seg_track -i ${in_path} -o ${out_path} -mb ${mask_base}
Some conversion examples:
python -m bdd100k.label.to_coco -m ins_seg -i data/bdd/labels/ins_seg/polygons/ins_seg_train.json -o data/bdd/labels/ins_seg/polygons/ins_seg_train_cocoformat.json -mb data/bdd/labels/ins_seg/bitmasks/train
python -m bdd100k.label.to_coco -m seg_track -i data/bdd/labels/seg_track_20/polygons/train -o data/bdd/labels/seg_track_20/seg_track_train_cocoformat.json -mb data/bdd/labels/seg_track_20/bitmasks/train
The ${SET_NAME}
here can be one of ['train', 'val'].
It is recommended to symlink the dataset root to $PCAN/data
.
If your folder structure is different, you may need to change the corresponding paths in config files.
Our folder structure follows
PCAN
├── tools
├── configs
├── pcan
├── ckpts
├── scripts
├── docs
├── data
│ ├── bdd
│ │ ├── images
│ │ │ ├── 100k
| | | | |── train
| | | | |── val
| | | | |── test
│ │ │ ├── 10k
| | | | |── train
| | | | |── val
| | | | |── test
│ │ │ ├── track
| | | | |── train
| | | | |── val
| | | | |── test
│ │ │ ├── seg_track_20
| | | | |── train
| | | | |── val
| | | | |── test
│ │ ├── labels
│ │ │ ├── box_track_20
│ │ │ ├── seg_track_20
│ │ │ ├── det_20
│ │ │ ├── ins_seg
This codebase is inherited from mmdetection. You can refer to the offical instructions. You can also refer to the short instructions below. We provide config files in configs.
Download the initial model weights from BDD100k MOT tracking set and put it under ckpts
folder.
python tools/train.py ${CONFIG_FILE} [optional arguments]
If you want to specify the working directory in the command, you can add an argument --work-dir ${YOUR_WORK_DIR}
.
./tools/dist_train.sh ${CONFIG_FILE} ${GPU_NUM} [optional arguments]
or refer to the following script:
bash scripts/train_pcan.sh
Optional arguments are:
--no-validate
(not suggested): By default, the codebase will perform evaluation at every k (default value is 1, which can be modified like this) epochs during the training. To disable this behavior, use--no-validate
.--work-dir ${WORK_DIR}
: Override the working directory specified in the config file.--resume-from ${CHECKPOINT_FILE}
: Resume from a previous checkpoint file.--cfg-options 'Key=value'
: Overide some settings in the used config.
Note:
resume-from
loads both the model weights and optimizer status, and the epoch is also inherited from the specified checkpoint. It is usually used for resuming the training process that is interrupted accidentally.- For more clear usage, the original
load-from
is deprecated and you can use--cfg-options 'load_from="path/to/you/model"'
instead. It only loads the model weights and the training epoch starts from 0 which is usually used for finetuning.
If you launch multiple jobs on a single machine, e.g., 2 jobs of 4-GPU training on a machine with 8 GPUs, you need to specify different ports (29500 by default) for each job to avoid communication conflict.
If you use dist_train.sh
to launch training jobs, you can set the port in commands.
CUDA_VISIBLE_DEVICES=0,1,2,3 PORT=29500 ./tools/dist_train.sh ${CONFIG_FILE} 4
CUDA_VISIBLE_DEVICES=4,5,6,7 PORT=29501 ./tools/dist_train.sh ${CONFIG_FILE} 4
Note that, in this repo, the evaluation metrics are computed with COCO-format. But to report the results on BDD100K, evaluating with BDD100K-format is required.
- single GPU
- single node multiple GPU
- multiple node
Trained models for testing
You can use the following commands to test a dataset.
# single-gpu testing
python tools/test.py ${CONFIG_FILE} ${CHECKPOINT_FILE} [--out ${RESULT_FILE}] [--eval ${EVAL_METRICS}] [--show] [--cfg-options]
# multi-gpu testing
./tools/dist_test.sh ${CONFIG_FILE} ${CHECKPOINT_FILE} ${GPU_NUM} [--out ${RESULT_FILE}] [--eval ${EVAL_METRICS}] [--cfg-options]
or refer to the following script:
bash scripts/test_pcan.sh
Optional arguments:
RESULT_FILE
: Filename of the output results in pickle format. If not specified, the results will not be saved to a file.EVAL_METRICS
: Items to be evaluated on the results. Allowed values depend on the dataset, e.g.,bbox
,track
.--cfg-options
: If specified, some setting in the used config will be overridden.
# single-gpu testing with visualization
bash scripts/vis_pcan.sh
We provide scripts to convert the output prediction into BDD100K format jsons and masks,
which can be submitted to BDD100K benchmark server to get the final performance for test set
. You can also evaluate val set
offline using script for final performance.
If you meet the problem 'No BDD100K format jsons generated after running convert_to_bdd.sh', please refer to the answer here.
python tools/to_bdd100k.py ${CONFIG_FILE} [--res ${RESULT_FILE}] [--task ${EVAL_METRICS}] [--bdd-dir ${BDD_OUTPUT_DIR} --nproc ${PROCESS_NUM}] [--coco-file ${COCO_PRED_FILE}]
Optional arguments:
RESULT_FILE
: Filename of the output results in pickle format.TASK_NAME
: Task names in one of [det
,ins_seg
,box_track
,seg_track
]BDD_OUPPUT_DIR
: The dir path to save the converted bdd jsons and masks.COCO_PRED_FILE
: Filename of the json in coco submission format.
BDD100k officially extended the validation set size in the beginning of year 2021 (from 10 validation video sequences to 32), which resulted in the different reported results compared to QDTrack paper with elder verison. And the ground truth (GT) mask annotation has been redefined to replace polygons with more accurate bitmasks.