From 5ace2048eab0a59b87397909ffddf51565c1a3ed Mon Sep 17 00:00:00 2001 From: lizz Date: Tue, 6 Apr 2021 13:22:33 +0800 Subject: [PATCH] out_size -> output_size Signed-off-by: lizz --- configs/_base_/models/ocr_mask_rcnn_r50_fpn_ohem_poly.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/_base_/models/ocr_mask_rcnn_r50_fpn_ohem_poly.py b/configs/_base_/models/ocr_mask_rcnn_r50_fpn_ohem_poly.py index 81474b31..3ef9a55e 100644 --- a/configs/_base_/models/ocr_mask_rcnn_r50_fpn_ohem_poly.py +++ b/configs/_base_/models/ocr_mask_rcnn_r50_fpn_ohem_poly.py @@ -37,7 +37,7 @@ model = dict( type='StandardRoIHead', bbox_roi_extractor=dict( type='SingleRoIExtractor', - roi_layer=dict(type='RoIAlign', out_size=7, sample_num=0), + roi_layer=dict(type='RoIAlign', output_size=7, sample_num=0), out_channels=256, featmap_strides=[4, 8, 16, 32]), bbox_head=dict( @@ -56,7 +56,7 @@ model = dict( loss_bbox=dict(type='L1Loss', loss_weight=1.0)), mask_roi_extractor=dict( type='SingleRoIExtractor', - roi_layer=dict(type='RoIAlign', out_size=14, sample_num=0), + roi_layer=dict(type='RoIAlign', output_size=14, sample_num=0), out_channels=256, featmap_strides=[4, 8, 16, 32]), mask_head=dict(