-
Notifications
You must be signed in to change notification settings - Fork 4
/
dist_test.sh
67 lines (42 loc) · 3.78 KB
/
dist_test.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
export MASTER_PORT=$((12000 + $RANDOM % 20000))
# # **************** For CASIA-B ****************
# GaitGraph1
## phase1
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph1/gaitgraph1_phase1_plus.yaml --phase test --log_to_file
# GaitGraph2
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph2/gaitgraph2_plus.yaml --phase test --log_to_file
# GaitTR
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaittr/gaittr_plus.yaml --phase test --log_to_file
# GPGait
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gpgait/gpgait.yaml --phase test --log_to_file
# # **************** For OUMVLP ****************
# GaitGraph1
## phase1
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph1/gaitgraph1_phase1_OUMVLP_plus.yaml --phase test --log_to_file
# GaitGraph2
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph2/gaitgraph2_OUMVLP_plus.yaml --phase test --log_to_file
# GaitTR
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaittr/gaittr_OUMVLP_plus.yaml --phase test --log_to_file
#GPGait
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gpgait/gpgait_OUMVLP.yaml --phase test --log_to_file
# # **************** For Gait3D ****************
# GaitGraph1
## phase1
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph1/gaitgraph1_phase1_Gait3D_plus.yaml --phase test --log_to_file
# GaitGraph2
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph2/gaitgraph2_Gait3D_plus.yaml --phase test --log_to_file
# GaitTR
# CUDA_VISIBLE_DEVICES=4,5,6,7 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaittr/gaittr_Gait3D_plus.yaml --phase test --log_to_file
# GPGait
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gpgait/gpgait_Gait3D.yaml --phase test --log_to_file
# # **************** For GREW ****************
# GaitGraph1
## phase1
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph1/gaitgraph1_phase1_GREW_plus.yaml --phase test --log_to_file
# GaitGraph2
# CUDA_VISIBLE_DEVICES=4,5,6,7 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaitgraph2/gaitgraph2_GREW_plus.yaml --phase test --log_to_file
# GaitTR
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gaittr/gaittr_GREW_plus.yaml --phase test --log_to_file
# GPGait
# CUDA_VISIBLE_DEVICES=0,1,2,3 python -m torch.distributed.launch --master_port=$MASTER_PORT --nproc_per_node=4 fastposegait/main.py --cfgs ./configs/gpgait/gpgait_GREW.yaml --phase test --log_to_file