-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgene_data.sh
64 lines (44 loc) · 3.92 KB
/
gene_data.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
export PYTHONPATH="$PWD"
# nohup python vh/data_gene/gen_data/vh_init.py --port "8093" --task all --mode simple --usage train --num-per-apartment 50 > log/8093.log 2>&1 &
# Generate Goal data
python vh/data_gene/gen_data/vh_init.py --port "8083" --task all --mode simple --usage train --num-per-apartment 500
python vh/data_gene/testing_agents/gene_data.py --mode simple \
--dataset_path ./vh/dataset/env_task_set_500_full.pik\
--base-port 8104
python vh/data_gene/gen_data/vh_init.py --port "8083" --task all --mode full --usage train --num-per-apartment 500
python vh/data_gene/testing_agents/gene_data.py --mode full \
--dataset_path ./vh/dataset/env_task_set_500_full.pik\
--base-port 8104
# nohup python vh/data_gene/gen_data/vh_init.py --port "8095" --task all --mode simple --usage test --num-per-apartment 50 > log/8095.log 2>&1 &
# nohup python vh/data_gene/gen_data/vh_init.py --port "8096" --task all --mode full --usage test --num-per-apartment 50 > log/8096.log 2>&1 &
# nohup python vh/data_gene/gen_data/vh_init.py --port "8097" --task all --mode simple --unseen-apartment --usage test --num-per-apartment 100 > log/8097.log 2>&1 &
# nohup python vh/data_gene/gen_data/vh_init.py --port "8098" --task all --mode full --unseen-apartment --usage test --num-per-apartment 100 > log/8098.log 2>&1 &
# # # sleep 5
# nohup python vh/data_gene/gen_data/vh_init.py --port "8100" --task unseen_comp --mode full --usage test --num-per-apartment 50 > log/8100.log 2>&1 &
# nohup python vh/data_gene/gen_data/vh_init.py --port "8100" --task all --mode full --unseen-item --usage test --num-per-apartment 50 > log/8100.log 2>&1 &
# nohup python vh/data_gene/gen_data/vh_init.py --port "8101" --task all --mode simple --unseen-item --usage test --num-per-apartment 50 > log/8101.log 2>&1 &
# nohup python vh/data_gene/gen_data/vh_init.py --port "8102" --task unseen_comp --mode full --unseen-item --usage test --num-per-apartment 50 > log/8102.log 2>&1 &
# Generate expert data
# python vh/data_gene/gen_data/vh_init.py --port "8093" --task all --mode simple --usage train --num-per-apartment 500
# python vh/data_gene/testing_agents/gene_data.py --mode simple \
# --dataset_path ./vh/dataset/env_task_set_500_simple.pik\
# --base-port 8103
# nohup python vh/data_gene/testing_agents/gene_data.py --mode simple \
# --dataset_path ./vh/dataset/env_task_set_50_simple.pik\
# --base-port 8103 > log/expert_data_8103.log 2>&1 &
# nohup python vh/data_gene/testing_agents/gene_data.py --mode full \
# --dataset_path ./vh/dataset/env_task_set_50_full.pik\
# --base-port 8104 > log/expert_data_8104.log 2>&1 &
# python vh/data_gene/testing_agents/gene_data.py --mode simple \
# --dataset_path ./vh/dataset/env_task_set_50_simple.pik\
# --base-port 8103 --task put_fridge
# python vh/data_gene/testing_agents/gene_data.py --mode full \
# --dataset_path ./vh/dataset/env_task_set_50_full.pik\
python vh/data_gene/gen_data/vh_init.py --port "8095" --task all --mode simple --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8096" --task all --mode full --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8097" --task all --mode simple --unseen-apartment --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8098" --task all --mode full --unseen-apartment --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8099" --task unseen_comp --mode full --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8100" --task all --mode full --unseen-item --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8101" --task all --mode simple --unseen-item --usage test --num-per-apartment 50
python vh/data_gene/gen_data/vh_init.py --port "8102" --task unseen_comp --mode full --unseen-item --usage test --num-per-apartment 50