Reproduced Implementation of Our ECCV-2020 oral paper: Semantic Flow for Fast and Accurate Scene Parsing. SFnet is the first real time nework which achieves the 80 mIoU on Cityscape test set!!!! It also contains our another concurrent work: SRNet:link.
Our methods achieve the best speed and accuracy trade-off on multiple scene parsing datasets.
Note that the original paper link is on TorchCV where you can train SFnet models. However, that repo is over-complex for further research and exploration.
If you have any question and or dissussion on fast segmentation, just open an issue. I will reply asap if I have the spare time.
Please see the DATASETs.md for the details.
pytorch == 1.2.0 or 1.3.0 apex opencv-python
Please download the pretrained models and put them into the pretrained_models dir on the root of this repo.
resnet101-deep-stem-pytorch:link
resnet50-deep-stem-pytorch:link
resnet18-deep-stem-pytorch:link
dfnetv1:link
dfnetv2:link
sf-resnet18-Mapillary:link
Please download the trained model, the mIoU is on Cityscape validation dataset.
resnet18(no-balanced-sample): 78.4 mIoU
resnet18: 79.0 mIoU link +dsn link
resnet18 + map: 79.9 mIoU link
resnet50: 80.4 mIoU link
resnet101: 81.2 mIoU link
dfnetv1: 72.2 mIoU link
dfnetv2: 75.8 mIoU link
python demo_folder.py --snapshot ckpt_path --demo_floder images_folder --save_dir save_dir_to_disk
The train settings require 8 GPU with at least 11GB memory. Please download the pretrained models before training.
Train ResNet18 model
sh ./scripts/train/train_cityscapes_sfnet_res18.sh
Train ResNet101 models
sh ./scripts/train/train_cityscapes_sfnet_res101.sh
sh ./scripts/submit_test/submit_cityscapes_sfnet_res101.sh
If you find this repo is useful for your research, Please consider citing our paper:
@inproceedings{sfnet,
title={Semantic Flow for Fast and Accurate Scene Parsing},
author={Li, Xiangtai and You, Ansheng and Zhu, Zhen and Zhao, Houlong and Yang, Maoke and Yang, Kuiyuan and Tong, Yunhai},
booktitle={ECCV},
year={2020}
}
@article{Li2020SRNet,
title={Towards Efficient Scene Understanding via Squeeze Reasoning},
author={Xiangtai Li and Xia Li and Ansheng You and Li Zhang and Guang-Liang Cheng and Kuiyuan Yang and Y. Tong and Zhouchen Lin},
journal={ArXiv},
year={2020},
volume={abs/2011.03308}
}
This repo is based on Semantic Segmentation from NVIDIA and DecoupleSegNets
Thanks to SenseTime Research for Reproducing All these model ckpts and pretrained model.
MIT