forked from HaziqRazali/Pedestrian-Intention-Prediction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemp.sh
36 lines (35 loc) · 890 Bytes
/
temp.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
CUDA_VISIBLE_DEVICES="1" python3 -m openpifpaf.train \
--pre-lr=1e-5 \
--lr=1e-5 \
--momentum=0.95 \
--epochs=20 \
--lr-decay 60 70 \
--jaad_batch_size=3 \
--batch-size=6 \
--basenet=resnet50block5 \
--head-quad=1 \
--headnets pif paf crm \
--square-edge=401 \
--regression-loss=laplace \
--lambdas 30 2 2 50 3 3 \
--freeze-base=1 # \
#--checkpoint "./outputs/resnet50block5-pif-paf-crm-edge401-190523-150633.pkl.epoch000"
cd ../openpifpaf_lol/
while true
do
CUDA_VISIBLE_DEVICES="0" python3 -m openpifpaf.train \
--pre-lr=1e-5 \
--lr=1e-5 \
--momentum=0.95 \
--epochs=1000000 \
--lr-decay 60 70 \
--jaad_batch_size=4 \
--batch-size=8 \
--basenet=resnet50block5 \
--head-quad=1 \
--headnets pif paf crm \
--square-edge=401 \
--regression-loss=laplace \
--lambdas 30 2 2 50 3 3 \
--freeze-base=0
done