EasyCV/configs/classification/cls/resnext/imagenet_resnext101-32x8d_jpg.py
2022-04-02 20:01:06 +08:00

11 lines
287 B
Python

_base_ = 'benchmarks/cls/resnext/resnext50-32x4d_b32x8_100e_jpg.py'
# model settings
model = dict(
backbone=dict(
type='ResNeXt',
depth=101,
groups=32,
base_width=8,
out_indices=[4], # 0: conv-1, x: stage-x
norm_cfg=dict(type='BN')))