forked from HumanCompatibleAI/imitation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_experiments.py
335 lines (282 loc) · 12.3 KB
/
test_experiments.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
"""Tests for commands.py + Smoke tests for bash scripts in experiments/."""
import glob
import os
import pathlib
import re
import subprocess
from typing import List
import pytest
SCRIPT_NAMES = (
"bc_benchmark.sh",
"dagger_benchmark.sh",
"benchmark_and_table.sh",
"imit_benchmark.sh",
"rollouts_from_policies.sh",
"transfer_learn_benchmark.sh",
)
THIS_DIR = pathlib.Path(__file__).absolute().parent
BENCHMARKING_DIR = THIS_DIR.parent / "src/imitation/scripts/config/tuned_hps"
EXPERIMENTS_DIR = THIS_DIR.parent / "experiments"
COMMANDS_PY_PATH = EXPERIMENTS_DIR / "commands.py"
EXPECTED_LOCAL_CONFIG_TEMPLATE = f"""python -m imitation.scripts.train_imitation \
dagger --capture=sys --name=run0 --file_storage={{output_dir}}/sacred/\
$USER-cmd-run0-dagger-0-c9420c90 \
with {BENCHMARKING_DIR}/fast_dagger_seals_cartpole.json \
seed=0 logging.log_root={{output_dir}}"""
BENCHMARKING_DIR_SUFFIX = re.sub(r".*/src/", "", str(BENCHMARKING_DIR))
EXPECTED_HOFVARPNIR_CONFIG_TEMPLATE = f"""ctl job run \
--name $USER-cmd-run0-dagger-0-c9420c90 \
--command "python -m imitation.scripts.train_imitation dagger \
--capture=sys --name=run0 --file_storage={{output_dir}}/sacred/\
$USER-cmd-run0-dagger-0-c9420c90 \
with /data/imitation/src/{BENCHMARKING_DIR_SUFFIX}/fast_dagger_seals_cartpole.json \
seed=0 logging.log_root={{output_dir}}" \
--container hacobe/devbox:imitation \
--login --force-pull --never-restart --gpu 0 \
--shared-host-dir-mount /data"""
def _get_benchmarking_path(benchmarking_file):
return os.path.join(BENCHMARKING_DIR, benchmarking_file)
def _run_commands_from_flags(**kwargs) -> List[str]:
"""Run commands.py with flags derived from the given `kwargs`.
This is a helper function to reduce boilerplate code in the tests
for commands.py.
Each key-value pair in kwargs corresponds to one flag.
If the value in the key-value is True, then the flag has the form "--key".
If the value in the key-value is a list, then the flag has the form
"--key value[0] value[1] ..."
Otherwise, the flag has the form "--key=value".
E.g., _run_commands_from_flags(name="baz", seeds=[0, 1], remote=True)
will execute the following python command:
python experiments/commands.py --name=baz --seeds 0 1 --remote
The function will return the parsed output of executing that command.
Args:
kwargs: keyword arguments from which to derive flags.
Returns:
A list where the ith entry of the list is the ith line printed out
by the python command.
"""
flags = []
# Add some defaults so that most tests can skip specifying these flags.
if "name" not in kwargs:
flags.append("--name=run0")
if "cfg_pattern" not in kwargs:
cfg_pattern = _get_benchmarking_path("fast_dagger_seals_cartpole.json")
flags.append("--cfg_pattern=" + cfg_pattern)
if "output_dir" not in kwargs:
flags.append("--output_dir=output")
# Build the flags.
for key in kwargs:
if isinstance(kwargs[key], bool) and kwargs[key]:
flag = f"--{key}"
elif isinstance(kwargs[key], list):
value = " ".join(map(str, kwargs[key]))
flag = f"--{key} {value}"
else:
flag = f"--{key}={kwargs[key]}"
flags.append(flag)
py_command = f"python {COMMANDS_PY_PATH} " + " ".join(flags)
completed_process = subprocess.run(
py_command,
shell=True,
capture_output=True,
stdin=subprocess.DEVNULL,
check=True,
)
# Each line of the formatted stdout is a command.
formatted_stdout = completed_process.stdout.decode("ascii").strip()
commands = formatted_stdout.split("\n")
return commands
def test_commands_local_config():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
commands = _run_commands_from_flags()
assert len(commands) == 1
expected = EXPECTED_LOCAL_CONFIG_TEMPLATE.format(output_dir="output")
assert commands[0] == expected
def test_commands_local_config_runs(tmpdir):
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
commands = _run_commands_from_flags(output_dir=tmpdir)
assert len(commands) == 1
expected = EXPECTED_LOCAL_CONFIG_TEMPLATE.format(output_dir=tmpdir)
assert commands[0] == expected
completed_process = subprocess.run(
commands[0],
shell=True,
capture_output=True,
stdin=subprocess.DEVNULL,
check=True,
)
assert completed_process.returncode == 0
assert (tmpdir / "dagger" / "seals-CartPole-v0").exists()
assert (tmpdir / "sacred").exists()
def test_commands_local_config_with_custom_flags():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
commands = _run_commands_from_flags(
name="baz",
seeds=1,
output_dir="/foo/bar",
)
assert len(commands) == 1
expected = f"""python -m imitation.scripts.train_imitation dagger \
--capture=sys --name=baz --file_storage=/foo/bar/sacred/\
$USER-cmd-baz-dagger-1-c9420c90 \
with {BENCHMARKING_DIR}/fast_dagger_seals_cartpole.json \
seed=1 logging.log_root=/foo/bar"""
assert commands[0] == expected
def test_commands_hofvarpnir_config():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
output_dir = "/data/output"
commands = _run_commands_from_flags(output_dir=output_dir, remote=True)
assert len(commands) == 1
expected = EXPECTED_HOFVARPNIR_CONFIG_TEMPLATE.format(output_dir=output_dir)
assert commands[0] == expected
def test_commands_hofvarpnir_config_with_custom_flags():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
commands = _run_commands_from_flags(
name="baz",
remote_cfg_dir="/bas/bat",
seeds=1,
output_dir="/foo/bar",
container="bam",
remote=True,
)
assert len(commands) == 1
expected = """ctl job run --name $USER-cmd-baz-dagger-1-c9420c90 \
--command "python -m imitation.scripts.train_imitation dagger \
--capture=sys --name=baz --file_storage=/foo/bar/sacred/\
$USER-cmd-baz-dagger-1-c9420c90 \
with /bas/bat/fast_dagger_seals_cartpole.json \
seed=1 logging.log_root=/foo/bar" --container bam \
--login --force-pull --never-restart --gpu 0 \
--shared-host-dir-mount /data"""
assert commands[0] == expected
def test_commands_local_config_with_special_characters_in_flags(tmpdir):
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
# Simulate running commands.py with the following flag:
# --output_dir="\"/tmp/.../foo bar\""
# And generating a training command with the following flag:
# --logging.log_root="/tmp/.../foo bar"
#
# If we didn't enclose the directory in quotes as in:
# --output_dir=/tmp/.../foo bar
# Then we would get an "unrecognized arguments: bar" error
# trying to run commands.py.
#
# Or if we enclosed the directory in double quotes as in:
# --output_dir="/tmp/.../foo bar"
# Then we would generate a training command with the following flag:
# --logging.log_root=/tmp/.../foo bar
# And we would get an error trying to run the generated command.
output_subdir = "foo bar"
unquoted_output_dir = (tmpdir / f"{output_subdir}").strpath
output_dir = '"\\"' + unquoted_output_dir + '\\""'
commands = _run_commands_from_flags(output_dir=output_dir)
assert len(commands) == 1
# The extra double quotes are removed in the generated command.
# It has the following flag:
# --logging.log_root="/tmp/.../foo bar"
# So it can run without an error introduced by the space.
expected = EXPECTED_LOCAL_CONFIG_TEMPLATE.format(
output_dir='"' + unquoted_output_dir + '"',
)
assert commands[0] == expected
def test_commands_hofvarpnir_config_with_special_characters_in_flags(tmpdir):
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
# See the comments in
# test_commands_local_config_with_special_characters_in_flags
# for a discussion of special characters in the flag values.
output_subdir = "foo bar"
unquoted_output_dir = (tmpdir / f"{output_subdir}").strpath
output_dir = '"\\"' + unquoted_output_dir + '\\""'
commands = _run_commands_from_flags(output_dir=output_dir, remote=True)
assert len(commands) == 1
# Make sure double quotes are escaped in the training script command
# because the training script command is itself enclosed in double
# quotes within the cluster command.
expected = EXPECTED_HOFVARPNIR_CONFIG_TEMPLATE.format(
output_dir='\\"' + unquoted_output_dir + '\\"',
)
assert commands[0] == expected
def test_commands_bc_config():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
cfg_pattern = _get_benchmarking_path("bc_seals_ant_best_hp_eval.json")
commands = _run_commands_from_flags(cfg_pattern=cfg_pattern)
assert len(commands) == 1
expected = f"""python -m imitation.scripts.train_imitation bc \
--capture=sys --name=run0 --file_storage=output/sacred/\
$USER-cmd-run0-bc-0-bb460c12 \
with {BENCHMARKING_DIR}/bc_seals_ant_best_hp_eval.json \
seed=0 logging.log_root=output"""
assert commands[0] == expected
def test_commands_dagger_config():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
cfg_pattern = _get_benchmarking_path("dagger_seals_ant_best_hp_eval.json")
commands = _run_commands_from_flags(cfg_pattern=cfg_pattern)
assert len(commands) == 1
expected = f"""python -m imitation.scripts.train_imitation dagger \
--capture=sys --name=run0 --file_storage=output/sacred/\
$USER-cmd-run0-dagger-0-f0790db7 \
with {BENCHMARKING_DIR}/dagger_seals_ant_best_hp_eval.json \
seed=0 logging.log_root=output"""
assert commands[0] == expected
def test_commands_gail_config():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
cfg_pattern = _get_benchmarking_path("gail_seals_ant_best_hp_eval.json")
commands = _run_commands_from_flags(cfg_pattern=cfg_pattern)
assert len(commands) == 1
expected = f"""python -m imitation.scripts.train_adversarial gail \
--capture=sys --name=run0 --file_storage=output/sacred/\
$USER-cmd-run0-gail-0-d5be0cea \
with {BENCHMARKING_DIR}/gail_seals_ant_best_hp_eval.json \
seed=0 logging.log_root=output"""
assert commands[0] == expected
def test_commands_airl_config():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
cfg_pattern = _get_benchmarking_path("airl_seals_ant_best_hp_eval.json")
commands = _run_commands_from_flags(cfg_pattern=cfg_pattern)
assert len(commands) == 1
expected = f"""python -m imitation.scripts.train_adversarial airl \
--capture=sys --name=run0 \
--file_storage=output/sacred/$USER-cmd-run0-airl-0-d7040cf5 \
with {BENCHMARKING_DIR}/airl_seals_ant_best_hp_eval.json \
seed=0 logging.log_root=output"""
assert commands[0] == expected
def test_commands_multiple_configs():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
# Test a more complicated `cfg_pattern`.
cfg_pattern = _get_benchmarking_path("*.json")
commands = _run_commands_from_flags(cfg_pattern=cfg_pattern)
assert len(commands) == len(glob.glob(cfg_pattern))
def test_commands_multiple_configs_multiple_seeds():
if os.name == "nt": # pragma: no cover
pytest.skip("commands.py not ported to Windows.")
cfg_pattern = _get_benchmarking_path("*.json")
seeds = [0, 1, 2]
commands = _run_commands_from_flags(
cfg_pattern=cfg_pattern,
seeds=seeds,
)
n_configs = len(glob.glob(cfg_pattern))
n_seeds = len(seeds)
assert len(commands) == (n_configs * n_seeds)
@pytest.mark.parametrize(
"script_name",
SCRIPT_NAMES,
)
def test_experiments_fast(script_name: str):
"""Quickly check that experiments run successfully on fast mode."""
if os.name == "nt": # pragma: no cover
pytest.skip("bash shell scripts not ported to Windows.")
exit_code = subprocess.call([f"./{EXPERIMENTS_DIR.stem}/{script_name}", "--fast"])
assert exit_code == 0