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

Fluctuation range of r50 1x.

jshilong opened this issue · comments

Hi, I get mAP 40.4 of paa-res50 with pytorch 1.3, is it in normal fluction range of paa ?

Hi, I actually tried R50_1x setting only once, so not sure about the performance fluctuation. What is clear is that 1x setting (90k iterations) does not make the training fully converged, which was the reason why I used 135k setting for ablation in the paper. You can check the fluctuation of a model's performance by using the argument --eval_dir [/path/to/checkpoint/dir] for test_net.py. This will sequentially perform testing for all checkpoints in the dir:
https://github.com/kkhoot/PAA/blob/master/tools/test_net.py#L164-L165

Thanks for your reply, I will try it.

@jshilong
Hi, have you tried to test PPA 1x without Score Voting? I think score voting is a common trick that other methods(ATSS, FCOS) can easily apply it. So I'm curious how much gain the PAA can achieve without score voting under the 1x setting over ATSS.