Skip to content

Commit fb14cf5

Browse files
committed
Update FMPose3D_test.sh to reflect new model paths
- Changed model_path to point to the fmpose3d_h36m directory. - Updated saved_model_path to model_weights_path for consistency with recent refactoring. - Adjusted test command to use the new model weights path.
1 parent 5091074 commit fb14cf5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/FMPose3D_test.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ mode='exp'
1111
exp_temp=0.005
1212
folder_name=test_s${eval_multi_steps}_${mode}_h${num_hypothesis_list}_$(date +%Y%m%d_%H%M%S)
1313

14-
model_path='pre_trained_models/fmpose_detected2d/model_GAMLP.py'
15-
saved_model_path='pre_trained_models/fmpose_detected2d/FMpose_36_4972_best.pth'
14+
model_path='../pre_trained_models/fmpose3d_h36m/model_GAMLP.py'
15+
model_weights_path='../pre_trained_models/fmpose3d_h36m/FMpose3D_pretrained_weights.pth'
1616

17-
#Test CFM
17+
#Test
1818
python3 scripts/FMPose3D_main.py \
1919
--reload \
2020
--topk ${topk} \
2121
--exp_temp ${exp_temp} \
2222
--weight_softmax_tau ${weight_softmax_tau} \
2323
--folder_name ${folder_name} \
24-
--saved_model_path "${saved_model_path}" \
24+
--model_weights_path "${model_weights_path}" \
2525
--model_path "${model_path}" \
2626
--eval_sample_steps ${eval_multi_steps} \
2727
--test_augmentation True \

0 commit comments

Comments
 (0)