yuminsuh / part_bilinear_reid

Code for ECCV2018 paper: Part-Aligned Bilinear Representations for Person Re-Identification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Low mAP and CMC-1

youngryan1993 opened this issue · comments

Hi, thanks for nice code.

However, I only change the batch size to 32 (origin code has 250), since the memory issue.

Then, the results is lower than that I thought.
(top1: 80.1% / top5: 92.2%/ top10:95.5%/Test Mean: 61.8%)

How can I do for improve the performance?

Thanks.

Hi, sorry for my delay. In my experiments, setting batch size big enough (at least 150) was necessary to get high accuracy. It is because the triplet loss uses every composable triplet from each minibatch, and therefore, larger batch size means more triplets are seen in each iteration.
If it is hard to increase the batch size, how about trying hard sample mining to enlarge the number of effective triplets?