mirror of
https://github.com/JDAI-CV/fast-reid.git
synced 2025-06-03 14:50:47 +08:00
9 lines
253 B
Bash
9 lines
253 B
Bash
#!/usr/bin/env bash
|
|
|
|
checkpoint_dir=/home/test2/liaoxingyu/pytorch-ckpt/reid/market_softmax/
|
|
mkdir -p ${checkpoint_dir}
|
|
|
|
python3 tools/train.py --config_file='configs/market_softmax.yml' \
|
|
--save_dir=${checkpoint_dir} | tee ${checkpoint_dir}/train.log
|
|
|