Home

Awesome

Instance-Batch Normalization Network

Paper

Xingang Pan, Ping Luo, Jianping Shi, Xiaoou Tang. "Two at Once: Enhancing Learning and Generalization Capacities via IBN-Net", ECCV2018.

Introduction

<img align="middle" width="500" height="280" src="./utils/IBNNet.png">

Requirements

Results

Top1/Top5 error on the ImageNet validation set are reported. You may get different results when training your models with different random seed.

Modeloriginre-implementationIBN-Net
DenseNet-12125.0/-24.96/7.8524.47/7.25 [pre-trained model]
DenseNet-16923.6/-24.02/7.0623.25/6.51 [pre-trained model]
ResNet-18-30.24/10.9229.17/10.24 [pre-trained model]
ResNet-34-26.70/8.5825.78/8.19 [pre-trained model]
ResNet-5024.7/7.824.27/7.0822.54/6.32 [pre-trained model]
ResNet-10123.6/7.122.48/6.2321.39/5.59 [pre-trained model]
ResNeXt-10121.2/5.621.31/5.7420.88/5.42 [pre-trained model]
SE-ResNet-10122.38/6.0721.68/5.8821.25/5.51 [pre-trained model]

The rank1/mAP on two Re-ID benchmarks Market1501 and DukeMTMC-reID (from michuanhaohao/reid-strong-baseline):

BackboneMarket1501DukeMTMC-reID
ResNet5094.5 (85.9)86.4 (76.4)
ResNet10194.5 (87.1)87.6 (77.6)
SeResNet5094.4 (86.3)86.4 (76.5)
SeResNet10194.6 (87.3)87.5 (78.0)
SeResNeXt5094.9 (87.6)88.0 (78.3)
SeResNeXt10195.0 (88.0)88.4 (79.0)
IBN-Net-a95.0 (88.2)90.1 (79.1)

Load IBN-Net from torch.hub

import torch
model = torch.hub.load('XingangPan/IBN-Net', 'resnet50_ibn_a', pretrained=True)

Testing/Training on ImageNet

  1. Clone the repository

    git clone https://github.com/XingangPan/IBN-Net.git
    
  2. Download ImageNet dataset (if you need to test or train on ImageNet). You may follow the instruction at fb.resnet.torch to process the validation set.

Testing

  1. Edit test.sh. Modify model and data_path to yours.
    Options for model: resnet50_ibn_a, resnet50_ibn_b, resnet101_ibn_a, resnext101_ibn_a, se_resnet101_ibn_a, densenet121_ibn_a, densenet169_ibn_a.

  2. Run test script

    sh test.sh
    

Training

  1. Edit train.sh. Modify model and data_path to yours.
  2. Run train script
    sh train.sh
    

Acknowledgement

This code is developed based on bearpaw/pytorch-classification.

MXNet Implementation

https://github.com/bruinxiong/IBN-Net.mxnet

Citing IBN-Net

@inproceedings{pan2018IBN-Net,  
  author = {Xingang Pan, Ping Luo, Jianping Shi, and Xiaoou Tang},  
  title = {Two at Once: Enhancing Learning and Generalization Capacities via IBN-Net},  
  booktitle = {ECCV},  
  year = {2018}  
}