forked from CORE-Robotics-Lab/MAGIC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
train_grf.sh
38 lines (37 loc) · 828 Bytes
/
train_grf.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
#!/bin/bash
export OMP_NUM_THREADS=1
python -u main.py \
--env_name grf \
--nagents 3 \
--nprocesses 16 \
--num_epochs 300 \
--epoch_size 10 \
--hid_size 128 \
--detach_gap 10 \
--lrate 0.001 \
--value_coeff 0.01 \
--max_steps 80 \
--directed \
--gat_num_heads 1 \
--gat_hid_size 128 \
--gat_num_heads_out 1 \
--ge_num_heads 8 \
--use_gconv_encoder \
--gconv_encoder_out_size 32 \
--self_loop_type1 2 \
--self_loop_type2 2 \
--first_gat_normalize \
--second_gat_normalize \
--message_encoder \
--message_decoder \
--scenario academy_3_vs_1_with_keeper \
--num_controlled_lagents 3 \
--num_controlled_ragents 0 \
--reward_type scoring \
--save \
--save_every 200 \
--seed 5678 \
--plot \
--plot_env magic_grf_seed_5678 \
--plot_port 8009 \
| tee train_grf.log