-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexec_test.sh
50 lines (42 loc) · 3.24 KB
/
exec_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
#!/bin/bash
n_times=100
#n_agents=50
#n_exp=15
#start_idx=0
filterLength=3
#root_path='/home/tkhu/Documents/AirSim/exp1104'
n_vis=24
vint=3.0
radius=1.5
model_path='checkpoint_all_vis_dagnn_vis_dagnn_K_3_n_vis_24_R_1.5_vinit_3.0_comm_model_disk.tar'
comm_model='disk'
K_neighbor='25'
arch='vis_dagnn'
noise='None'
#f_name='./airsim_dataset_K'${filterLength}'.pkl'
#python grad_train_data_optimal_location.py --n-times $n_times --n-exp $n_exp --start-idx $start_idx --K $filterLength --exp-name $root_path
#python create_idx.py --n-times $n_times --n-agents $n_agents --n-exp $n_exp --start-idx $start_idx --K $filterLength --exp-name $root_path
seed=0
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=1
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=2
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=3
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=4
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=5
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=6
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
seed=7
CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor --noise $noise
#seed=1
#CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor
#seed=2
#CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor
#seed=3
#CUDA_VISIBLE_DEVICES=0 python inference_by_dronet.py $arch --vinit $vint --radius $radius --K $filterLength --F $n_vis --seed $seed --model-path $model_path --comm-model $comm_model --K-neighbor $K_neighbor
#mode='vis_grnn'
#python grad_train_data_optimal_location.py --n-times $n_times --n-exp $n_exp --start-idx $start_idx --K $filterLength --exp-name $root_path --mode $mode