Coder Social home page Coder Social logo

hdjang / feature-selective-anchor-free-module-for-single-shot-object-detection Goto Github PK

View Code? Open in Web Editor NEW
143.0 7.0 38.0 4.14 MB

A PyTorch Implementation of Feature Selective Anchor-Free Module for Single-Shot Object Detection (CVPR'19)

License: Apache License 2.0

Python 91.26% Dockerfile 0.03% C++ 2.78% Cuda 5.44% Shell 0.49%
pytorch mmdetection fsaf retinanet cvpr2019

feature-selective-anchor-free-module-for-single-shot-object-detection's People

Contributors

hdjang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

feature-selective-anchor-free-module-for-single-shot-object-detection's Issues

The result of FSAF model (mAP) is lower than expected.

I train the FSAF and RetinaNet model respectively with default config on single PC, but get a strange result which the mAP of RetinaNet is 28.7% and that of FSAF is 27.0%, but according to your paper, the mAP of FSAF might be 0.2% higher than RetinaNet model.

I train model like that:
python tools/train.py configs/retinanet_r50_400_050x.py
python tools/train.py configs/fsaf_r50_400_050x.py

run on unbuntu 18.04
python 3.7
Pillow version is 6.1.0
pytorch version is 1.1.0

Is it correct to use same convolution layers for different scales' feature map in FSAF Head ?

I noticed that the calculation of anchor-free cls & reg preds used following codes:

      def forward_single(self, x):
        cls_feat = x
        reg_feat = x
        for cls_conv in self.cls_convs:
            cls_feat = cls_conv(cls_feat)
        for reg_conv in self.reg_convs:
            reg_feat = reg_conv(reg_feat)
        
        cls_score = self.fsaf_cls(cls_feat)
        bbox_pred = self.relu(self.fsaf_reg(reg_feat))
        
        return cls_score, bbox_pred

    def forward(self, feats):
        return multi_apply(self.forward_single, feats)

where multi_apply() used the map() function to apply forward_single() to each feature map in feats. However the self.cls_conv, self.reg conv etc. should share their weights across different scale feature map, is this true ?

thanks

其他实现

有没有不是基于mmdetection的版本的代码呀

problem with lr

hi, ty for ur sharing. It's very helpful.
I have some question with lr.
I saw ur GPU_number is 4, num_images_per_GPU is 8. And lr rate is 0.01.
But according to the original mmdetection setting, shouldn't it to be 0.01*2?
(mmdetection GPU=8,num_images_per_GPU=2 lr is 0.01)

have

hi @hdjang , have you reproduced the performance reported in the paper? thks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.