OpenMMLab Detection Toolbox and Benchmark
https://mmdetection.readthedocs.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
363 B
14 lines
363 B
5 years ago
|
_base_ = './fsaf_r50_fpn_1x_coco.py'
|
||
|
model = dict(
|
||
|
pretrained='open-mmlab://resnext101_64x4d',
|
||
|
backbone=dict(
|
||
|
type='ResNeXt',
|
||
|
depth=101,
|
||
|
groups=64,
|
||
|
base_width=4,
|
||
|
num_stages=4,
|
||
|
out_indices=(0, 1, 2, 3),
|
||
|
frozen_stages=1,
|
||
|
norm_cfg=dict(type='BN', requires_grad=True),
|
||
|
style='pytorch'))
|