Cysu / open-reid

Open source person re-identification library in python
https://cysu.github.io/open-reid/
MIT License
1.34k stars 349 forks source link

How to fine-tune a model? #56

Closed cooliybob closed 6 years ago

cooliybob commented 6 years ago

Hi, your library is very convenient to use and I have a question, I use market1501 dataset to train a resnet50. Is it able to fine-tune the same model using cuhk03 ? Thanks,

Cysu commented 6 years ago

Yeah, roughly you may just

  1. create the cuhk03 dataset
  2. create the model
  3. load from market1501 pretrained parameters
  4. fine-tune on cuhk03
cooliybob commented 6 years ago

Great answer. Thanks a lot ~!!!