Skip to content

Commit eed10d1

Browse files
committed
Update train_animal3d.sh to modify eval_sample_steps, change model_type for model registry integration, and comment out model_path for clarity.
1 parent 34eef00 commit eed10d1

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

animals/scripts/train_animal3d.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@ layers=5
22
batch_size=13
33
lr=1e-3
44
gpu_id=0
5-
eval_sample_steps=3
5+
eval_sample_steps=5
66
num_saved_models=3
77
frames=1
88
large_decay_epoch=15
99
lr_decay_large=0.75
10-
n_joints=26
11-
out_joints=26
1210
epochs=300
13-
# model_path='models/model_animals.py'
14-
model_path="" # when the path is empty, the model will be loaded from the installed fmpose package
11+
model_type='fmpose3d_animals'
12+
# model_path="" # set to a local file path to override the registry
1513
# root path denotes the path to the original dataset
1614
root_path="./dataset/"
1715
train_dataset_paths=(
@@ -32,7 +30,7 @@ python ./scripts/main_animal3d.py \
3230
--test 1 \
3331
--batch_size ${batch_size} \
3432
--lr ${lr} \
35-
${model_path:+--model_path "$model_path"} \
33+
--model_type "${model_type}" \
3634
--folder_name ${folder_name} \
3735
--layers ${layers} \
3836
--gpu ${gpu_id} \

0 commit comments

Comments
 (0)