# my_work **Repository Path**: bitxiaoyang/my_work ## Basic Information - **Project Name**: my_work - **Description**: 自己的实验数据 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-30 - **Last Updated**: 2024-10-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README <<<<<<< HEAD ## [Style Interleaved Learning for Generalizable Person Re-identification](https://arxiv.org/abs/2207.03132) (TMM 2023) ![](figures/net.png) ### Requirements - CUDA>=10.0 - At least four 1080-Ti GPUs - Training Data The model is trained and evaluated on [Market-1501](https://drive.google.com/file/d/0B8-rUzbwVRk0c054eEozWG9COHM/view), [DukeMTMC-reID](https://drive.google.com/file/d/1jjE85dRCMOgRtvJ5RQV9-Afs-2_5dY3O/view), [MSMT17_V1](https://www.pkuvmc.com/dataset.html), [CUHK03](https://drive.google.com/file/d/1ILKiSthHm_XVeRQU2ThWNDVSO7lKWAZ_/view?usp=sharing), [CUHK-SYSU](https://github.com/ShuangLI59/person_search). Unzip all datasets and ensure the file structure is as follow: ``` data │ └─── market1501 / dukemtmc / cuhk03 / msmt17v1 / cuhk_sysu │ └─── Market-1501-v15.09.15 / DukeMTMC-reID / cuhk03_release / MSMT17_V1 / CUHK-SYSU ``` ### Run ``` ARCH=resnet50 SRC1/SRC2/SRC3=market1501/dukemtmc/cuhk03/msmt17v1/cuhk_sysu TARGET=market1501/dukemtmc/cuhk03/msmt17v1 # train baseline CUDA_VISIBLE_DEVICES=0,1,2,3 python main.py \ -a resnet50 -b 64 --test-batch-size 256 --iters 200 --lr 3.5e-4 --epoch 70 \ --dataset_src1 msmt17v1 --dataset_src2 cuhk03 --dataset_src3 market1501 -d dukemtmc \ --logs-dir logs/Baseline \ --data-dir DATA_PATH # train IL CUDA_VISIBLE_DEVICES=0,1,2,3 python main.py \ -a resnet50 -b 64 --test-batch-size 256 --iters 200 --lr 3.5e-4 --epoch 70 \ --dataset_src1 msmt17v1 --dataset_src2 cuhk03 --dataset_src3 market1501 -d dukemtmc \ --logs-dir logs/IL \ --updateStyle \ --data-dir DATA_PATH ``` *Note:* (1) The baseline setting in this code can be denoted as 'FBF' baseline, which is different with the reported 'FB' baseline in the paper. But they are similar in performance: ------------------------------------------------------------ |Baseline|→M |→D |→MS |→C3 |Avg | |FB |59.3/81.2|54.3/70.9|14.7/35.2|36.1/37.4|41.1/56.2| |FBF |59.7/81.5|53.6/73.0|13.7/33.4|35.3/35.9|40.6/56.0| ------------------------------------------------------------ (2) Just simply set '--updateStyle' can activate the interleaved learning. ### Results ![](figures/performance.png) ![](figures/per2.png) ### Acknowledgments This repo borrows partially from [M3L](https://github.com/HeliosZhao/M3L/tree/master). ### Citation ``` @article{tan2023style, title={Style Interleaved Learning for Generalizable Person Re-identification}, author={Tan, Wentao and Ding, Changxing and Wang, Pengfei and Gong, Mingming and Jia, Kui}, journal={IEEE Transactions on Multimedia}, year={2023}, publisher={IEEE}, doi={10.1109/TMM.2023.3283878} } ``` ### Contact Email: ftwentaotan@mail.scut.edu.cn or 731584671@qq.com 如果可以当然还是希望用中文contact我啦! ======= # my_work #### 介绍 自己的实验数据 #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) >>>>>>> 63635d8357ec1de6087aaeb8650199c4c422b3ed