This commit is contained in:
wangjingyeye 2022-06-28 06:17:45 +00:00
parent 9422629cc0
commit 1315cdfc86

View File

@ -209,7 +209,6 @@ class ResNet(nn.Layer):
for block in range(len(depth)):
shortcut = False
block_list = []
# is_dcn = self.dcn_stage[block]
for i in range(depth[block]):
conv_name = "res" + str(block + 2) + chr(97 + i)
basic_block = self.add_sublayer(