zhangxinyu-xyz / PAST-ReID

Self-Training with Progressive Augmentation for Unsupervised Cross-Domain Person Re-identification (ICCV2019)
MIT License
99 stars 24 forks source link

How to generate prepare initial files by myself? #7

Closed woxue closed 4 years ago

woxue commented 4 years ago

Thanks for your excellent work! Can you tell me how to generate prepare initial files (i.e. D-M_M-t-feature.mat and D-M_M-t-rerank-distmat.mat) by myself? I want to try this method with some new archs. Thank you~

zhangxinyu-xyz commented 4 years ago

@woxue You can directly train the PCB model on Duke (in PCB project). Then extract the features of training images on Market1501 to get D-M_M-t-feature.mat. After that, you can conduct rerank (in our project or rerank project https://github.com/zhunzhong07/person-re-ranking) to get D-M_M-t-rerank-distmat.mat

woxue commented 4 years ago

Thank you!