deep-person-reid/projects/DML/README.md

16 lines
665 B
Markdown
Raw Normal View History

2020-04-16 22:32:03 +08:00
# Deep mutual learning
2020-04-16 22:36:07 +08:00
This repo implements [Deep Mutual Learning (CVPR'18)](https://zpascal.net/cvpr2018/Zhang_Deep_Mutual_Learning_CVPR_2018_paper.pdf) (DML) for person re-id.
2020-04-16 22:32:03 +08:00
We used this code in our [OSNet](https://arxiv.org/pdf/1905.00953.pdf) paper (see Supp. B). The training command to reproduce the result of "triplet + DML" (Table 12f in the paper) is
```bash
python main.py \
--config-file im_osnet_x1_0_dml_256x128_amsgrad_cosine.yaml \
--root $DATA
```
2020-04-16 22:36:07 +08:00
`$DATA` corresponds to the path to your dataset folder.
2020-04-16 22:32:03 +08:00
Change `model.deploy` to `both` if you wanna enable model ensembling.
If you have any questions, please raise an issue in the Issues area.