-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathgenerator.py
executable file
·131 lines (106 loc) · 5.42 KB
/
generator.py
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import os
import copy
from config import DIC_AGENTS, DIC_ENVS
import time
import sys
from multiprocessing import Process, Pool
class Generator:
def __init__(self, cnt_round, cnt_gen, dic_path, dic_exp_conf, dic_agent_conf, dic_traffic_env_conf, best_round=None):
self.cnt_round = cnt_round
self.cnt_gen = cnt_gen
self.dic_exp_conf = dic_exp_conf
self.dic_path = dic_path
self.dic_agent_conf = copy.deepcopy(dic_agent_conf)
self.dic_traffic_env_conf = dic_traffic_env_conf
self.agents = [None]*dic_traffic_env_conf['NUM_AGENTS']
if self.dic_exp_conf["PRETRAIN"]:
self.path_to_log = os.path.join(self.dic_path["PATH_TO_PRETRAIN_WORK_DIRECTORY"], "train_round",
"round_" + str(self.cnt_round), "generator_" + str(self.cnt_gen))
else:
self.path_to_log = os.path.join(self.dic_path["PATH_TO_WORK_DIRECTORY"], "train_round", "round_"+str(self.cnt_round), "generator_"+str(self.cnt_gen))
if not os.path.exists(self.path_to_log):
os.makedirs(self.path_to_log)
self.env = DIC_ENVS[dic_traffic_env_conf["SIMULATOR_TYPE"]](
path_to_log = self.path_to_log,
path_to_work_directory = self.dic_path["PATH_TO_WORK_DIRECTORY"],
dic_traffic_env_conf = self.dic_traffic_env_conf)
self.env.reset()
# every generator's output
# generator for pretraining
# Todo pretrain with intersection_id
if self.dic_exp_conf["PRETRAIN"]:
self.agent_name = self.dic_exp_conf["PRETRAIN_MODEL_NAME"]
self.agent = DIC_AGENTS[self.agent_name](
dic_agent_conf=self.dic_agent_conf,
dic_traffic_env_conf=self.dic_traffic_env_conf,
dic_path=self.dic_path,
cnt_round=self.cnt_round,
best_round=best_round,
)
else:
start_time = time.time()
for i in range(dic_traffic_env_conf['NUM_AGENTS']):
agent_name = self.dic_exp_conf["MODEL_NAME"]
#the CoLight_Signal needs to know the lane adj in advance, from environment's intersection list
if agent_name=='CoLight_Signal':
agent = DIC_AGENTS[agent_name](
dic_agent_conf=self.dic_agent_conf,
dic_traffic_env_conf=self.dic_traffic_env_conf,
dic_path=self.dic_path,
cnt_round=self.cnt_round,
best_round=best_round,
inter_info=self.env.list_intersection,
intersection_id=str(i)
)
else:
agent = DIC_AGENTS[agent_name](
dic_agent_conf=self.dic_agent_conf,
dic_traffic_env_conf=self.dic_traffic_env_conf,
dic_path=self.dic_path,
cnt_round=self.cnt_round,
best_round=best_round,
intersection_id=str(i)
)
self.agents[i] = agent
print("Create intersection agent time: ", time.time()-start_time)
def generate(self):
reset_env_start_time = time.time()
done = False
state = self.env.reset()
step_num = 0
reset_env_time = time.time() - reset_env_start_time
running_start_time = time.time()
while not done and step_num < int(self.dic_exp_conf["RUN_COUNTS"]/self.dic_traffic_env_conf["MIN_ACTION_TIME"]):
action_list = []
step_start_time = time.time()
for i in range(self.dic_traffic_env_conf["NUM_AGENTS"]):
if self.dic_exp_conf["MODEL_NAME"] in ["CoLight","GCN", "SimpleDQNOne"]:
one_state = state
if self.dic_exp_conf["MODEL_NAME"] == 'CoLight':
action, _ = self.agents[i].choose_action(step_num, one_state)
elif self.dic_exp_conf["MODEL_NAME"] == 'GCN':
action = self.agents[i].choose_action(step_num, one_state)
else: # simpleDQNOne
if True:
action = self.agents[i].choose_action(step_num, one_state)
else:
action = self.agents[i].choose_action_separate(step_num, one_state)
action_list = action
else:
one_state = state[i]
action = self.agents[i].choose_action(step_num, one_state)
action_list.append(action)
next_state, reward, done, _ = self.env.step(action_list)
print("time: {0}, running_time: {1}".format(self.env.get_current_time()-self.dic_traffic_env_conf["MIN_ACTION_TIME"],
time.time()-step_start_time))
state = next_state
step_num += 1
running_time = time.time() - running_start_time
log_start_time = time.time()
print("start logging")
self.env.bulk_log_multi_process()
log_time = time.time() - log_start_time
self.env.end_sumo()
print("reset_env_time: ", reset_env_time)
print("running_time: ", running_time)
print("log_time: ", log_time)