PSSL: Distilling ensemble of explanations for weakly-supervised pre-training of image segmentation models.
Xuhong Li, Haoyi Xiong, Yi Liu, Dingfu Zhou, Zeyu Chen, Yaqing Wang, and Dejing Dou. "Distilling ensemble of explanations for weakly-supervised pre-training of image segmentation models." Machine Learning (2022): 1-17. https://arxiv.org/abs/2207.03335
In our work, we propose a method that leverages Pseudo Semantic Segmentation Labels (PSSL), to enable the end-to-end pre-training for image segmentation models based on classification datasets. PSSL was inspired by the observation that the explanation results of classification models, obtained through explanation algorithms such as CAM, SmoothGrad and LIME, would be close to the pixel clusters of visual objects. Specifically, PSSL is obtained for each image by interpreting the classification results and aggregating an ensemble of explanations queried from multiple classifiers to lower the bias caused by single models. With PSSL for every image of ImageNet, the proposed method leverages a weighted segmentation learning procedure to pre-train the segmentation network en masse.
Our method improves the pre-training step of segmentation models. We provide the details of the pre-training here, but note that the pre-training step can be skipped because we have provided the pre-trained models. The PSSL dataset can be obtained by sending an email to paddleseg@baidu.com via an official email (not use qq, gmail, etc.) including your institution/company information and the purpose on the dataset.
Here we show the configuration files of two lightweight models, STDC2 and PPLite-Seg-B, where the download links are also provided.
Having prepared datasets (ImageNet and PSSL) and installed PaddlePaddle and PaddleSeg, we can run the pre-training script:
- For STDC-Seg
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
path_save="work_dirs_stdc2_pssl"
fleetrun --log_dir $path_save train.py \
--config configs/stdcseg/stdc2_seg_pssl.yml \
--log_iters 200 \
--num_workers 12 \
--save_interval 13345 \
--keep_checkpoint_max 20 \
--save_dir ${path_save}/snapshot
- For PP-LiteSeg
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
path_save="work_dirs_pp_liteseg_stdc2_pssl"
fleetrun --log_dir $path_save train.py \
--config configs/pp_liteseg/pp_liteseg_stdc2_pssl.yml \
--log_iters 100 \
--num_workers 12 \
--save_interval 13345 \
--keep_checkpoint_max 20 \
--save_dir ${path_save}/snapshot
After the pre-training, the weights are saved in ${path_save}/snapshot/iter_xxx/model.pdparams
. Conventionall, we use the 5th epoch's checkpoint to do the downstream tasks, i.e., 66725th iter.
For downstream tasks, PSSL does not need to change anything, except loading the pre-trained model. We can change this by simply adding one line in the config file, for example,
model:
...
pretrained: work_dirs_pp_liteseg_stdc2_pssl/snapshot/iter_66725/model.pdparams
Model | Backbone | Resolution | Training Iters | mIoU | mIoU (flip) | mIoU (ms+flip) | Links |
---|---|---|---|---|---|---|---|
STDC2-Seg50 | STDC2 | 512x512 | 40000 | 68.98% | 70.07% | 69.99% | model | log | vdl |
STDC2-Seg50 + PSSL | STDC2 | 512x512 | 40000 | 74.49% | 74.96% | 75.79% | model | log |
Model | Backbone | Training Iters | Train Crops | Test Resolution | mIoU | mIoU (flip) | mIoU (ms+flip) | Links |
---|---|---|---|---|---|---|---|---|
PP-LiteSeg-B | STDC2 | 160000 | 1024x512 | 2048x1024 | 79.04% | 79.52% | 79.85% | config|model|log|vdl |
PP-LiteSeg-B + PSSL | STDC2 | 160000 | 1024x512 | 2048x1024 | 79.06% | 79.61% | 79.97% | config|model|log |