mangye16 / Cross-Modal-Re-ID-baseline

Pytorch Code for Cross-Modality Person Re-Identification (Visible Thermal/Infrared Re-ID)
MIT License
345 stars 71 forks source link

The mode of shot #8

Closed L-CODERS closed 4 years ago

L-CODERS commented 4 years ago

Does this code only perform single-shot result?

mangye16 commented 4 years ago

Yes, this code only contains the single-shot evaluation protocol.

L-CODERS commented 4 years ago

Hi! I want to ask a question about gallery set. The gallery set contains 301 randomly selected visible images in your paper, but I think there is only 96 visible images in single shot mode and I can't find where indicates the '301 randomly selected visible images' in the code. Could you tell me how the code implement '301 randomly selected visible images'?

mangye16 commented 4 years ago

Hi, the random selection is in data_manager.py Line 53-58. In all search mode, it will result in 301 visible (RGB) images.

You can also refer to Ancong's original paper for details.

L-CODERS commented 4 years ago

Oh! I'm sorry for my carelessness. Thinks for you reply!