Following up on facebookresearch/fairseq#759 (comment), it would be great if Faster-RCNN could be used directly, so we could input images instead of pre-computed features from MS-COCO. Regarding the specific Faster-RCNN PyTorch implementation, torchvision only provides it with a resnet-50 backbone, while detectron2 also has a resnet-101 backbone.
This is similar to what was used as feature extractor in bottom-up-attention, but there are however some differences between the original Caffe ResNet-101/faster_rcnn model and the one in detectron2.
The project airsplay/py-bottom-up-attention tries to address these differences. In adrelino/py-bottom-up-attention-extracted I currently try to split it apart from detectron2 that it is a fork of. However I am not sure airsplay/py-bottom-up-attention#1 (comment) if the original pre-trained model weights can actually be loaded.
How important do you think is it to re-generate features using exactly the same weights as in bottom-up-attention?
Following up on facebookresearch/fairseq#759 (comment), it would be great if Faster-RCNN could be used directly, so we could input images instead of pre-computed features from MS-COCO. Regarding the specific Faster-RCNN PyTorch implementation, torchvision only provides it with a resnet-50 backbone, while detectron2 also has a resnet-101 backbone.
This is similar to what was used as feature extractor in bottom-up-attention, but there are however some differences between the original Caffe ResNet-101/faster_rcnn model and the one in detectron2.
The project airsplay/py-bottom-up-attention tries to address these differences. In adrelino/py-bottom-up-attention-extracted I currently try to split it apart from detectron2 that it is a fork of. However I am not sure airsplay/py-bottom-up-attention#1 (comment) if the original pre-trained model weights can actually be loaded.
How important do you think is it to re-generate features using exactly the same weights as in bottom-up-attention?