-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtrain.py
118 lines (103 loc) · 4.65 KB
/
train.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
# train.py
# Script to train policies in Isaac Gym
#
# Copyright (c) 2018-2021, NVIDIA Corporation
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import isaacgym
import os
import hydra
import datetime
from termcolor import cprint
from omegaconf import DictConfig, OmegaConf
from hydra.utils import to_absolute_path
from penspin.algo.ppo.ppo import PPO
from penspin.algo.ppo.demon import DemonTrain
from penspin.tasks import isaacgym_task_map
from penspin.utils.reformat import omegaconf_to_dict, print_dict
from penspin.utils.misc import set_np_formatting, set_seed, git_hash, git_diff_config
# OmegaConf & Hydra Config
# Resolvers used in hydra configs (see https://omegaconf.readthedocs.io/en/2.1_branch/usage.html#resolvers)
OmegaConf.register_new_resolver('eq', lambda x, y: x.lower() == y.lower())
OmegaConf.register_new_resolver('contains', lambda x, y: x.lower() in y.lower())
OmegaConf.register_new_resolver('if', lambda pred, a, b: a if pred else b)
# allows us to resolve default arguments which are copied in multiple places in the config.
# used primarily for num_env
OmegaConf.register_new_resolver('resolve_default', lambda default, arg: default if arg == '' else arg)
@hydra.main(config_name='config', config_path='configs')
def main(config: DictConfig):
time_str = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
run_name = f"{config.wandb_name}_{time_str}"
if config.checkpoint:
if '*' in config.checkpoint:
from glob import glob
_ckpt = glob(config.checkpoint)
assert len(_ckpt) == 1
config.checkpoint = _ckpt[0]
config.checkpoint = to_absolute_path(config.checkpoint)
# set numpy formatting for printing only
set_np_formatting()
cfg_dict = omegaconf_to_dict(config)
print_dict(cfg_dict)
config.seed = set_seed(config.seed)
if config.wandb_activate:
import wandb
run = wandb.init(
project=config.wandb_project,
# group=cfg.wandb_group,
# entity=cfg.wandb_entity,
config=cfg_dict,
sync_tensorboard=True,
name=run_name,
resume="allow",
monitor_gym=True,
)
cprint('Start Building the Environment', 'green', attrs=['bold'])
env = isaacgym_task_map[config.task_name](
config=omegaconf_to_dict(config.task),
sim_device=config.sim_device,
graphics_device_id=config.graphics_device_id,
headless=config.headless,
)
output_dif = os.path.join('outputs', config.train.ppo.output_name)
os.makedirs(output_dif, exist_ok=True)
agent = eval(config.train.algo)(env, output_dif, full_config=config)
if config.test:
assert config.train.load_path
agent.restore_test(config.train.load_path)
agent.test()
else:
date = str(datetime.datetime.now().strftime('%m%d%H'))
print(git_diff_config('./'))
gitdiff_suffix = ''
os.system(f'git diff HEAD > {output_dif}/gitdiff{gitdiff_suffix}.patch')
with open(os.path.join(output_dif, f'config_{date}_{git_hash()}.yaml'), 'w') as f:
f.write(OmegaConf.to_yaml(config))
agent.restore_train(config.train.load_path)
agent.train()
if __name__ == '__main__':
main()