SOTA Re-identification Methods and Toolbox
 
 
 
 
 
Go to file
L1aoXingyu e01d9b241f Update AGW baseline result 2020-02-13 20:37:08 +08:00
fastreid Update AGW baseline result 2020-02-13 20:37:08 +08:00
projects Update AGW baseline result 2020-02-13 20:37:08 +08:00
tests Update strong baseline result 2020-02-13 00:19:15 +08:00
.gitignore Update sampler code 2020-02-10 07:38:56 +08:00
README.md Update StrongBaseline results for market1501 and dukemtmc 2020-02-11 22:38:40 +08:00

README.md

FastReID

FastReID is a research platform that implements state-of-the-art re-identification algorithms.

Quick Start

The designed architecture follows this guide PyTorch-Project-Template, you can check each folder's purpose by yourself.

  1. cd to folder where you want to download this repo

  2. Run git clone https://github.com/L1aoXingyu/fast-reid.git

  3. Install dependencies:

  4. Prepare dataset Create a directory to store reid datasets under this repo via

    cd fast-reid
    mkdir datasets
    
    1. Download dataset to datasets/ from baidu pan or google driver
    2. Extract dataset. The dataset structure would like:
    datasets
        Market-1501-v15.09.15
            bounding_box_test/
            bounding_box_train/
    
  5. Prepare pretrained model. If you use origin ResNet, you do not need to do anything. But if you want to use ResNet_ibn, you need to download pretrain model in here. And then you can put it in ~/.cache/torch/checkpoints or anywhere you like.

    Then you should set the pretrain model path in configs/softmax_triplet.yml.

  6. compile with cython to accelerate evalution

    cd fastreid/evaluation/rank_cylib; make all
    

Model Zoo and Baselines