kkhoot / PAA

A PyTorch implementation of the paper `Probabilistic Anchor Assignment with IoU Prediction for Object Detection` ECCV 2020 (https://arxiv.org/abs/2007.08103)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to use this algorithm in an anchor-free network

linsy-ai opened this issue · comments

Is it possible to use this algorithm in an anchor-free network such as FCOS? Thank you very much!

Hi @linsy-ai , PAA should be applicable to FCOS or any other anchor-free detectors, just like ATSS does. Although this codebase doesn't support it as-is, you can change this anchor-based assignment function to whatever assignment logic you want. I anticipate the performance will be similar to the current anchor-based assignment, as ATSS and other dynamic assignment algorithms show almost the same performance for both anchor-based and anchor-free models.

Thank you very much for your reply and your good work, and I want to know how this eccv2020_fig1.jpg picture is drawn?

https://github.com/kkhoot/PAA/blob/master/eccv2020_fig1.jpg
Thank you again for your reply!

It is a drawing using MS Office :)

Thank you very much