-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_rls.py
349 lines (322 loc) · 12.8 KB
/
test_rls.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
"""
Testing phase of the experiments on the test data
based-on:
https://github.com/ray-project/ray/issues/9123
https://github.com/ray-project/ray/issues/7983
"""
import os
import sys
import pickle
import click
from typing import Dict, Any
import json
import copy
import ray
from ray.rllib.utils.framework import try_import_torch
import pprint
import gym
import ray.rllib.algorithms.ppo as ppo
import ray.rllib.algorithms.impala as impala
import ray.rllib.algorithms.a3c as a3c
import ray.rllib.algorithms.pg as pg
import ray.rllib.algorithms.dqn as dqn
import pandas as pd
from pprint import PrettyPrinter
pp = PrettyPrinter(indent=4)
# get an absolute path to the directory that contains parent files
project_dir = os.path.dirname(os.path.join(os.getcwd(), __file__))
sys.path.append(os.path.normpath(os.path.join(project_dir, '..', '..')))
from experiments.utils.constants import (
TRAIN_RESULTS_PATH,
TESTS_RESULTS_PATH,
ENVSMAP
)
from experiments.utils import (
add_path_to_config,
make_env_class
)
torch, nn = try_import_torch()
def run_experiments(
*, test_series: int, train_series: int, type_env: str,
cluster_id: int, workload_id: int,
experiment_id: int, local_mode: bool,
episode_length, num_episodes: int, workload_id_test: int,
checkpoint_to_load: str):
"""
"""
path_env = type_env if type_env != 'kube-scheduler' else 'sim-scheduler'
experiments_config_folder = os.path.join(
TRAIN_RESULTS_PATH,
"series", str(train_series),
"envs", path_env,
"clusters", str(cluster_id),
"workloads", str(workload_id),
"experiments", str(experiment_id),
"experiment_config.json")
with open(experiments_config_folder) as cf:
config = json.loads(cf.read())
# fix the grid searches
algorithm, env_configs, learn_configs, num_workers = fix_grid_searches(
config=config,
cluster_id=cluster_id,
workload_id_test=workload_id_test,
episode_length=episode_length
)
path_env = type_env if type_env != 'kube-scheduler' else 'sim-scheduler'
experiments_folder = os.path.join(TRAIN_RESULTS_PATH,
"series", str(train_series),
"envs", path_env,
"clusters", str(cluster_id),
"workloads", str(workload_id),
"experiments", str(experiment_id),
algorithm)
ray.init(local_mode=local_mode)
experiments_str = []
for item in os.listdir(experiments_folder):
if 'json' not in item:
experiments_str.append(item)
experiments_str.sort()
for experiment_str, env_config, learn_config in zip(
experiments_str, env_configs, learn_configs):
# trained ray agent should always be simulation
# however the agent outside it can be kuber agent or
# other types of agent
if type_env not in ['CartPole-v0', 'Pendulum-v0']:
env = gym.make(ENVSMAP[type_env], config=env_config)
# reset the env at the beginning of each episode
ray_config = {"env": make_env_class('sim-scheduler'),
"env_config": env_config}
ray_config.update(learn_config)
else:
ray_config = {"env": type_env}
ray_config.update(learn_config)
# break
if checkpoint_to_load=='last':
checkpoint_string = sorted([
s for s in filter (
lambda x: 'checkpoint' in x, os.listdir(
os.path.join(
experiments_folder, experiment_str)))])[-1]
checkpoint = int(checkpoint_string.replace('checkpoint_',''))
checkpoint_path = os.path.join(
experiments_folder,
experiment_str,
# os.listdir(experiments_folder)[0],
checkpoint_string,
f"checkpoint-{checkpoint}"
)
checkpoint_to_load_info = checkpoint
else:
checkpoint_path = os.path.join(
experiments_folder,
experiment_str,
# os.listdir(experiments_folder)[0],
f"checkpoint_{checkpoint_to_load}",
f"checkpoint-{int(checkpoint_to_load)}"
)
checkpoint_to_load_info = int(checkpoint_to_load)
alg_env = make_env_class('sim-scheduler')
if algorithm == 'PPO':
agent = ppo.PPOTrainer(
config=ray_config,
env=alg_env)
if algorithm == 'IMPALA':
agent = impala.ImpalaTrainer(
config=ray_config,
env=alg_env)
elif algorithm == 'A3C' or algorithm == 'A2C':
agent = a3c.A3CTrainer(
config=ray_config,
env=alg_env)
elif algorithm == 'PG':
agent = pg.PGTrainer(
config=ray_config,
env=alg_env)
elif algorithm == 'DQN':
agent = dqn.DQNTrainer(
config=ray_config,
env=alg_env)
import time
episodes = []
for i in range(0, num_episodes):
print(f"---- \nepisode: {i} ----\n")
agent.restore(checkpoint_path=checkpoint_path)
episode_reward = 0
done = False
states = []
obs = env.reset()
# print(f"observation: {env.env.raw_observation}")
# start = time.time()
while not done:
# print(f"timestep: {env.env.timestep}")
action = agent.compute_action(obs)
# pp.pprint(f"action: {action}")
obs, reward, done, info = env.step(action)
# pp.pprint(f"observation: {env.env.raw_observation}")
# print('\n'+50*'-'+'\n')
state = flatten(env.raw_observation, action, reward, info)
states.append(state)
episode_reward += reward
# print("time elapsed: {}".format(time.time() - start))
states = pd.DataFrame(states)
print(f"episode reward: {episode_reward}")
episodes.append(states)
info = {
'type_env': type_env,
'series': train_series,
'cluster_id': cluster_id,
'workload_id': workload_id,
'workload_id_test': workload_id_test,
'checkpoint': checkpoint_to_load_info,
'experiment_str': experiment_str,
'experiments': experiment_id,
'episode_length': episode_length,
'num_episodes': num_episodes,
'algorithm': algorithm,
'penalty_consolidated': env_config['penalty_p'],
'num_workers': num_workers
}
# make the new experiment folder
test_series_path = os.path.join(
TESTS_RESULTS_PATH,
'series', str(test_series),
'tests')
if not os.path.isdir(test_series_path):
os.makedirs(test_series_path)
content = os.listdir(test_series_path)
new_test = len(content)
this_test_folder = os.path.join(test_series_path,
str(new_test))
os.makedirs(this_test_folder)
# save the necesarry information
with open(os.path.join(this_test_folder, 'info.json'), 'x') as out_file:
json.dump(info, out_file, indent=4)
with open(os.path.join(
this_test_folder, 'episodes.pickle'), 'wb') as out_pickle:
pickle.dump(episodes, out_pickle)
def flatten(raw_obs, action, reward, info):
return {
'action': action,
'raw_obs': raw_obs,
'num_consolidated': info['num_consolidated'],
'num_overloaded': info['num_overloaded'],
'scheduling_timestep': info['scheduling_timestep'],
'scheduling_success': info['scheduling_success'],
'reward_illegal': info['rewards']['illegal'],
'reward_u': info['rewards']['u'],
'reward_c': info['rewards']['c'],
'reward_cv': info['rewards']['cv'],
'reward_v': info['rewards']['v'],
'reward_g': info['rewards']['g'],
'reward_p': info['rewards']['p'],
'reward_illegal': info['rewards']['illegal'],
'u': info['values']['u'],
'c': info['values']['c'],
'cv': info['values']['cv'],
'v': info['values']['v'],
'g': info['values']['g'],
'p': info['values']['p'],
'reward': reward
}
def fix_grid_searches(
config, cluster_id, workload_id_test,
episode_length):
"""
This function is used to fix the grid searches.
"""
num_workers = 4
pp = pprint.PrettyPrinter(indent=4)
print('start experiments with the following config:\n')
pp.pprint(config)
learn_configs = []
env_configs = []
# extract differnt parts of the input_config
learn_config = config['learn_config']
algorithm = config["run_or_experiment"]
env_config_base = config['env_config_base']
values = []
for k, v in env_config_base.items():
if type(v) == dict:
if 'grid_search' in v:
values = v['grid_search']
break
values.sort()
if values != []:
for value in values:
# update the difffent part of the envs
env_config_base_copy = copy.deepcopy(env_config_base)
env_config_base_copy.update({
'episode_length': episode_length,
'no_action_on_overloaded': True,
'timestep_reset': True,
'placement_reset': True,
k: value
})
learn_config.update({"num_workers": num_workers})
# add the additional nencessary arguments to the edge config
env_config = add_path_to_config(
config=env_config_base_copy,
cluster_id=cluster_id,
workload_id=workload_id_test,
)
learn_configs.append(learn_config)
env_configs.append(env_config)
else:
# update the difffent part of the envs
env_config_base.update({
'episode_length': episode_length,
'no_action_on_overloaded': True,
'placement_reset': True,
})
learn_config.update({"num_workers": num_workers})
# add the additional nencessary arguments to the edge config
env_config = add_path_to_config(
config=env_config_base,
cluster_id=cluster_id,
workload_id=workload_id_test,
)
learn_configs.append(learn_config)
env_configs.append(env_config)
return algorithm, env_configs, learn_configs, num_workers
# fix the grid searches
@click.command()
@click.option('--local-mode', type=bool, default=True)
@click.option('--test-series', required=True, type=int, default=17)
@click.option('--train-series', required=True, type=int, default=121)
@click.option('--type-env', required=True,
type=click.Choice(['sim-scheduler', 'kube-scheduler']),
default='kube-scheduler')
@click.option('--cluster-id', required=True, type=int, default=19)
@click.option('--workload-id', required=True, type=int, default=0)
@click.option('--experiment-id', required=True, type=int, default=0)
@click.option('--episode-length', required=False, type=int, default=100000)
@click.option('--num-episodes', required=False, type=int, default=1)
@click.option('--workload-id-test', required=False, type=int, default=3)
@click.option('--checkpoint-to-load', required=False, type=str, default='last')
def main(local_mode: bool, test_series: int, train_series: int,
type_env: str, cluster_id: int, workload_id: int,
experiment_id: int, num_episodes: int, episode_length: int,
workload_id_test: int,
checkpoint_to_load: str):
"""[summary]
Args:
local_mode (bool): run in local mode for having the
test-series (int): series of the tests
train-series (int): series of the trainining phase
type_env (str): the type of the used environment
cluster_id (int): used cluster cluster
workload_id (int): the workload used in that cluster
checkpoint (int): training checkpoint to load
experiment-id (int): the trained agent experiment id
episode-length (int): number of steps in the test episode
"""
run_experiments(
test_series=test_series,
train_series=train_series, type_env=type_env,
cluster_id=cluster_id, workload_id=workload_id,
experiment_id=experiment_id,
num_episodes=num_episodes, episode_length=episode_length,
local_mode=local_mode, workload_id_test=workload_id_test,
checkpoint_to_load=checkpoint_to_load)
if __name__ == "__main__":
main()