Training Techniques | SGD with Momentum, Weight Decay, Label Smoothing |
---|---|
Architecture | 1x1 Convolution, Squeeze-and-Excitation Block, Bottleneck Residual Block, Batch Normalization, Convolution, Global Average Pooling, Residual Block, Residual Connection, ReLU, Max Pooling, Softmax |
ID | seresnet152d |
SHOW MORE |
Training Techniques | SGD with Momentum, Weight Decay, Label Smoothing |
---|---|
Architecture | 1x1 Convolution, Squeeze-and-Excitation Block, Bottleneck Residual Block, Batch Normalization, Convolution, Global Average Pooling, Residual Block, Residual Connection, ReLU, Max Pooling, Softmax |
ID | seresnet50 |
SHOW MORE |
SE ResNet is a variant of a ResNet that employs squeeze-and-excitation blocks to enable the network to perform dynamic channel-wise feature recalibration.
To load a pretrained model:
import timm
m = timm.create_model('seresnet50', pretrained=True)
m.eval()
Replace the model name with the variant you want to use, e.g. seresnet50
. You can find the IDs in the model summaries at the top of this page.
You can follow the timm recipe scripts for training a new model afresh.
@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}
}
BENCHMARK | MODEL | METRIC NAME | METRIC VALUE | GLOBAL RANK |
---|---|---|---|---|
ImageNet | seresnet152d | Top 1 Accuracy | 83.74% | # 29 |
Top 5 Accuracy | 96.77% | # 29 | ||
ImageNet | seresnet50 | Top 1 Accuracy | 80.26% | # 91 |
Top 5 Accuracy | 95.07% | # 91 |