(image, num_block)
| 185 | |
| 186 | @auto_reuse_variable_scope |
| 187 | def resnet_conv5(image, num_block): |
| 188 | with backbone_scope(freeze=False): |
| 189 | l = resnet_group('group3', image, resnet_bottleneck, 512, num_block, 2) |
| 190 | return l |
| 191 | |
| 192 | |
| 193 | def resnet_fpn_backbone(image, num_blocks): |
no test coverage detected
searching dependent graphs…