|
MAXIM_CONFIGS = { |
|
|
|
"S-1": { |
|
"features": 32, |
|
"depth": 3, |
|
"num_stages": 1, |
|
"num_groups": 2, |
|
"num_bottleneck_blocks": 2, |
|
"block_gmlp_factor": 2, |
|
"grid_gmlp_factor": 2, |
|
"input_proj_factor": 2, |
|
"channels_reduction": 4, |
|
"name": "s1", |
|
}, |
|
|
|
"S-2": { |
|
"features": 32, |
|
"depth": 3, |
|
"num_stages": 2, |
|
"num_groups": 2, |
|
"num_bottleneck_blocks": 2, |
|
"block_gmlp_factor": 2, |
|
"grid_gmlp_factor": 2, |
|
"input_proj_factor": 2, |
|
"channels_reduction": 4, |
|
"name": "s2", |
|
}, |
|
|
|
"S-3": { |
|
"features": 32, |
|
"depth": 3, |
|
"num_stages": 3, |
|
"num_groups": 2, |
|
"num_bottleneck_blocks": 2, |
|
"block_gmlp_factor": 2, |
|
"grid_gmlp_factor": 2, |
|
"input_proj_factor": 2, |
|
"channels_reduction": 4, |
|
"name": "s3", |
|
}, |
|
|
|
"M-1": { |
|
"features": 64, |
|
"depth": 3, |
|
"num_stages": 1, |
|
"num_groups": 2, |
|
"num_bottleneck_blocks": 2, |
|
"block_gmlp_factor": 2, |
|
"grid_gmlp_factor": 2, |
|
"input_proj_factor": 2, |
|
"channels_reduction": 4, |
|
"name": "m1", |
|
}, |
|
|
|
"M-2": { |
|
"features": 64, |
|
"depth": 3, |
|
"num_stages": 2, |
|
"num_groups": 2, |
|
"num_bottleneck_blocks": 2, |
|
"block_gmlp_factor": 2, |
|
"grid_gmlp_factor": 2, |
|
"input_proj_factor": 2, |
|
"channels_reduction": 4, |
|
"name": "m2", |
|
}, |
|
|
|
"M-3": { |
|
"features": 64, |
|
"depth": 3, |
|
"num_stages": 3, |
|
"num_groups": 2, |
|
"num_bottleneck_blocks": 2, |
|
"block_gmlp_factor": 2, |
|
"grid_gmlp_factor": 2, |
|
"input_proj_factor": 2, |
|
"channels_reduction": 4, |
|
"name": "m3", |
|
}, |
|
} |
|
|