Commit 84b97851 authored by chenych's avatar chenych
Browse files

First commit

parents
Pipeline #656 failed with stages
in 0 seconds
#!/usr/bin/env bash
# coco_path是训练数据集地址,数据是coco format
sh <config path> \
--coco_path <coco path> \
--resume <checkpoint path> \
--eval
#!/usr/bin/env bash
export HIP_VISIBLE_DEVICES=0,1,2,3 # 自行修改为训练的卡号和数量
export HSA_FORCE_FINE_GRAIN_PCIE=1
export USE_MIOPEN_BATCHNORM=1
# coco_path是训练数据集地址,数据是coco format
GPUS_PER_NODE=4 ./tools/run_dist_launch.sh 4 <config path> \
--coco_path <coco path> \
--resume <checkpoint path> \
--eval
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment