Gloun SEResNeXt

Last updated on Feb 14, 2021

gluon_seresnext101_32x4d

Parameters 49 Million
FLOPs 10 Billion
File Size 187.40 MB
Training Data ImageNet
Training Resources
Training Time

Architecture 1x1 Convolution, Squeeze-and-Excitation Block, Batch Normalization, Convolution, Grouped Convolution, Global Average Pooling, ResNeXt Block, Residual Connection, ReLU, Max Pooling, Softmax
ID gluon_seresnext101_32x4d
Crop Pct 0.875
Image Size 224
Interpolation bicubic
SHOW MORE
SHOW LESS
gluon_seresnext101_64x4d

Parameters 88 Million
FLOPs 20 Billion
File Size 337.48 MB
Training Data ImageNet
Training Resources
Training Time

Architecture 1x1 Convolution, Squeeze-and-Excitation Block, Batch Normalization, Convolution, Grouped Convolution, Global Average Pooling, ResNeXt Block, Residual Connection, ReLU, Max Pooling, Softmax
ID gluon_seresnext101_64x4d
Crop Pct 0.875
Image Size 224
Interpolation bicubic
SHOW MORE
SHOW LESS
gluon_seresnext50_32x4d

Parameters 28 Million
FLOPs 5 Billion
File Size 105.46 MB
Training Data ImageNet
Training Resources
Training Time

Architecture 1x1 Convolution, Squeeze-and-Excitation Block, Batch Normalization, Convolution, Grouped Convolution, Global Average Pooling, ResNeXt Block, Residual Connection, ReLU, Max Pooling, Softmax
ID gluon_seresnext50_32x4d
Crop Pct 0.875
Image Size 224
Interpolation bicubic
SHOW MORE
SHOW LESS
README.md

Summary

SE ResNeXt is a variant of a ResNext that employs squeeze-and-excitation blocks to enable the network to perform dynamic channel-wise feature recalibration.

The weights from this model were ported from Gluon.

How do I load this model?

To load a pretrained model:

import timm
m = timm.create_model('gluon_seresnext50_32x4d', pretrained=True)
m.eval()

Replace the model name with the variant you want to use, e.g. gluon_seresnext50_32x4d. You can find the IDs in the model summaries at the top of this page.

How do I train this model?

You can follow the timm recipe scripts for training a new model afresh.

Citation

@misc{hu2019squeezeandexcitation,
      title={Squeeze-and-Excitation Networks}, 
      author={Jie Hu and Li Shen and Samuel Albanie and Gang Sun and Enhua Wu},
      year={2019},
      eprint={1709.01507},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}

Results

Image Classification on ImageNet

Image Classification
BENCHMARK MODEL METRIC NAME METRIC VALUE GLOBAL RANK
ImageNet gluon_seresnext101_64x4d Top 1 Accuracy 80.88% # 72
Top 5 Accuracy 95.31% # 72
ImageNet gluon_seresnext101_32x4d Top 1 Accuracy 80.87% # 73
Top 5 Accuracy 95.29% # 73
ImageNet gluon_seresnext50_32x4d Top 1 Accuracy 79.92% # 100
Top 5 Accuracy 94.82% # 100