pull/6717/head
wangjingyeye 2022-06-28 03:28:53 +00:00
parent 0ae4f66461
commit a63f4414e2
2 changed files with 1 additions and 2 deletions

View File

@ -273,7 +273,7 @@ class DetResizeForTest(object):
def resize_image_type1(self, img):
resize_h, resize_w = self.image_shape
ori_h, ori_w = img.shape[:2] # (h, w, c)
if self.keep_ratio:
if self.keep_ratio is True:
resize_w = ori_w * resize_h / ori_h
N = math.ceil(resize_w / 32)
resize_w = N * 32

View File

@ -323,7 +323,6 @@ class ResNet_vd(nn.Layer):
for block in range(len(depth)):
block_list = []
shortcut = False
# is_dcn = self.dcn_stage[block]
for i in range(depth[block]):
basic_block = self.add_sublayer(
'bb_%d_%d' % (block, i),