You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
414 B
12 lines
414 B
#!/bin/bash
|
|
|
|
# Python 脚本路径
|
|
PYTHON_SCRIPT="tools/test.py"
|
|
|
|
# 固定的参数
|
|
CONFIG_FILE="configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192.py"
|
|
CHECKPOINT_FILE="checkpoints/hrnet/hrnet_w48_coco_256x192-b9e0b3ab_20200708.pth"
|
|
WORK_DIR="test/hrnet_w48_256x192"
|
|
|
|
# 执行 Python 脚本并传递固定的参数
|
|
python $PYTHON_SCRIPT $CONFIG_FILE $CHECKPOINT_FILE --work-dir $WORK_DIR
|