Skip to content

sjjdd/efficientFCN

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[EfficientFCN: Holistically-Guided Decoding for Semantic Segmentation (ECCV20)]

image

Introduction

We propose a holistically-guided decoder (HGD) for achieving discriminative deep feature representations. With the proposed HGD, our EfficientFCN method for semantic segmentation achieves comparable or even better performance than state-of-the-art methods with only 1/3 of their computational costs on PASCAL Context, PASCAL VOC and ADE20K datasets.

Recently, we integrate the proposed HGD into the original FPN architecture to implement one novel FPN-variant HGD-FPN for object detection.

Usage

  1. Install pytorch

    -The code is tested on python3.6 and torch>1.1.0

    -The code is modified from PyTorch-Encoding.

  2. Clone the resposity

    git clone https://github.com/jianbo909/efficientFCN.git
    cd efficientFCN
    python setup.py install
  3. Dataset

    -Prepare the datasets by runing the scripts in the scripts folder, for example preparing PASCAL Context dataset:

    python scripts/prepare_pcontext.py
  4. Training

    -The training scripts for pcontext and ADE20K are in the experiments/segmentation/scripts_train/ folder. For example, the training command for pcontext dataset:

    ./scripts_train/train_efficientFCN_pcontext.sh
  5. Evaluation

    -The testing scripts are in the experiments/segmentation/test_scripts folder. For example, the training command for pcontext dataset:

    ./test_scripts/train_efficientFCN_resnet101_pcontext_MS.sh /path/to/model

Citation

@inproceedings{liu2020efficientfcn,
  title={EfficientFCN: Holistically-guided Decoding for Semantic Segmentation},
  author={Liu, Jianbo and He, Junjun and Zhang, Jiawei and Ren, Jimmy S and Li, Hongsheng},
  booktitle={European Conference on Computer Vision},
  pages={1--17},
  year={2020},
  organization={Springer}
}

Acknowledgement

Thanks PyTorch-Encoding!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 70.7%
  • Cuda 17.9%
  • C++ 10.9%
  • Other 0.5%