Closed lijain closed 4 years ago
If you want use it in two stage detector, you change the https://github.com/jshilong/SEPC/blob/51e24ace1653cba6d3bc0ab536c6adb3b956c8dd/sepc/self_mmdet/models/necks/sepc.py#L59 delete L59~L65 ,and just return x
Thank you for your reply, so just save the 4 stages of Pconv!
Would you like to know if you have tried spec in two stages? What's the effect?
We did't try it considering the latency.
OK, thank you for your reply
Hello, thank you for sharing. I want to ask you if you test the configuration file settings of faster RCNN to add Pconv, as shown below. model = dict( type='FasterRCNN', pretrained='torchvision://resnet50', backbone=dict( type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), frozen_stages=1, norm_cfg=dict(type='BN', requires_grad=True), style='pytorch'),
neck=dict(