This is a PyTorch implementation of our group-wise learning framework for weakly supervised semantic segmentation, which is accepted in AAAI 2021.
Group-Wise Semantic Mining for Weakly Supervised Semantic Segmentation. [arXiv]
Xueyi Li, Tianfei Zhou, Jianwu Li, Yi Zhou and Zhaoxiang Zhang. AAAI 2021.
We train the model using PyTorch 1.4.0 with four NVIDIA RTX 2080Ti GPU with 11GB memory per card.
- PyTorch 1.4.0
Other minor Python modules can be installed by running
pip install -r requirements.txt
git clone -- recursive https://github.com/Lixy1997/Group-WSSS
In the paper, we use PASCAL VOC 2012 for training. Here are the steps to prepare the data:
-
Download the PASCAL VOC 2012 dataset.
-
Create soft links:
cd data; ln -s your/path VOC2012;
-
Once the data is prepared, please run
python train.py
for training the classification network with our default parameters.After the network is finished, you can resize the maps to the original image size by
cd run/pascal python vis.py
-
Move the resized maps to the
data/VOCdevkit/VOC2012/
folder.Put the saliency maps to the
data/VOCdevkit/VOC2012/
folder, or you can run DSS model to generate saliency maps by yourself. -
Generate the pseudo labels of the training set by
python gen_labels.py
Once the pseudo ground-truths are generated, they are employed to train the semantic segmentation network. We use Deeplab-v2 in all experiments. But most popular FCN-like segmentation networks can be used instead.
-
The visualization of CAMs generated by our group-wise semantic mining can be downloaded from Google Drive.
-
The saliency maps used as pseudo labels can be downloaded from Google Drive.
-
The pseudo ground-truths of PASCAL VOC 2012 generated by our model can be download from Google Drive
-
The segmentation results of val and test sets of PASCAL VOC 2012 dataset can be downloaded from Google Drive. For reproducing scores of the test set, please submit the results of test set to the official website following the instructions of the official website.
If you find this work useful for your research, please consider citing the following paper:
@article{li2020group,
title={Group-Wise Semantic Mining for Weakly Supervised Semantic Segmentation},
author={Li, Xueyi and Zhou, Tianfei and Li, Jianwu and Zhou, Yi and Zhang, Zhaoxiang},
journal={arXiv preprint arXiv:2012.05007},
year={2020}
}