You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for l in range(1, len(cfgs.LEVLES)): # do not concat P6, do not upsample P2
upsample_p = tf.image.resize_bilinear(P_list[l],
size=[h, w],
name='up_sample_%d' % (l + 2))
concat_list.append(upsample_p)
concat_fet = tf.concat(concat_list, axis=-1)
print(concat_fet.shape)
The text was updated successfully, but these errors were encountered:
这个是代码中的金字塔合并操作,这样p6也就被合并了,(后面查看形状,输出的是1280)。但注释里写的不合并p6,求大家解惑。
The text was updated successfully, but these errors were encountered: