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
We try to match every detail in DeepLabv3, except that Multi-Grid other than (1, 1, 1) is not yet supported. On PASCAL VOC 2012 validation set, using the same hyperparameters, we reproduce the performance reported in the paper (GPU with 16GB memory is required). We also support the combination of Group Normalization + Weight Standardization:
Implementation
Normalization
Multi-Grid
ASPP
Image Pooling
mIOU
Paper
BN
(1, 2, 4)
(6, 12, 18)
Yes
77.21
Ours
BN
(1, 1, 1)
(6, 12, 18)
Yes
76.49
Ours
GN+WS
(1, 1, 1)
(6, 12, 18)
Yes
77.20
To run the BN experiment, after preparing the dataset as follows, simply run:
mkdir data
cd data
wget https://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar
tar -xf VOCtrainval_11-May-2012.tar
cd VOCdevkit/VOC2012/
wget https://cs.jhu.edu/~cxliu/data/SegmentationClassAug.zip
wget https://cs.jhu.edu/~cxliu/data/SegmentationClassAug_Visualization.zip
wget https://cs.jhu.edu/~cxliu/data/list.zip
unzip SegmentationClassAug.zip
unzip SegmentationClassAug_Visualization.zip
unzip list.zip