Skip to content

Commit 500e097

Browse files
committed
Update vis_in_the_wild.sh to standardize model weights path
- Renamed saved_model_path to model_weights_path for consistency with recent refactoring. - Updated command-line argument to reflect the new model weights path.
1 parent fb14cf5 commit 500e097

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

demo/vis_in_the_wild.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ batch_size=1
66
sh_file='vis_in_the_wild.sh'
77

88
model_path='../pre_trained_models/fmpose3d_h36m/model_GAMLP.py'
9-
saved_model_path='../pre_trained_models/fmpose3d_h36m/FMpose3D_pretrained_weights.pth'
9+
model_weights_path='../pre_trained_models/fmpose3d_h36m/FMpose3D_pretrained_weights.pth'
1010

1111
target_path='./images/' # folder containing multiple images
1212
# target_path='./images/xx.png' # single image
@@ -15,7 +15,7 @@ target_path='./images/' # folder containing multiple images
1515
python3 vis_in_the_wild.py \
1616
--type 'image' \
1717
--path ${target_path} \
18-
--saved_model_path "${saved_model_path}" \
18+
--model_weights_path "${model_weights_path}" \
1919
--model_path "${model_path}" \
2020
--sample_steps ${sample_steps} \
2121
--batch_size ${batch_size} \

0 commit comments

Comments
 (0)