forked from OpenMotionLab/MotionGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
215 lines (184 loc) · 6.63 KB
/
config.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
import importlib
from argparse import ArgumentParser
from omegaconf import OmegaConf
from os.path import join as pjoin
import os
import glob
def get_module_config(cfg, filepath="./configs"):
"""
Load yaml config files from subfolders
"""
yamls = glob.glob(pjoin(filepath, '*', '*.yaml'))
yamls = [y.replace(filepath, '') for y in yamls]
for yaml in yamls:
nodes = yaml.replace('.yaml', '').replace('/', '.')
nodes = nodes[1:] if nodes[0] == '.' else nodes
OmegaConf.update(cfg, nodes, OmegaConf.load('./configs' + yaml))
return cfg
def get_obj_from_str(string, reload=False):
"""
Get object from string
"""
module, cls = string.rsplit(".", 1)
if reload:
module_imp = importlib.import_module(module)
importlib.reload(module_imp)
return getattr(importlib.import_module(module, package=None), cls)
def instantiate_from_config(config):
"""
Instantiate object from config
"""
if not "target" in config:
raise KeyError("Expected key `target` to instantiate.")
return get_obj_from_str(config["target"])(**config.get("params", dict()))
def resume_config(cfg: OmegaConf):
"""
Resume model and wandb
"""
if cfg.TRAIN.RESUME:
resume = cfg.TRAIN.RESUME
if os.path.exists(resume):
# Checkpoints
cfg.TRAIN.PRETRAINED = pjoin(resume, "checkpoints", "last.ckpt")
# Wandb
wandb_files = os.listdir(pjoin(resume, "wandb", "latest-run"))
wandb_run = [item for item in wandb_files if "run-" in item][0]
cfg.LOGGER.WANDB.params.id = wandb_run.replace("run-","").replace(".wandb", "")
else:
raise ValueError("Resume path is not right.")
return cfg
def parse_args(phase="train"):
"""
Parse arguments and load config files
"""
parser = ArgumentParser()
group = parser.add_argument_group("Training options")
# Assets
group.add_argument(
"--cfg_assets",
type=str,
required=False,
default="./configs/assets.yaml",
help="config file for asset paths",
)
# Default config
if phase in ["train", "test", "demo"]:
cfg_defualt = "./configs/default.yaml"
elif phase == "render":
cfg_defualt = "./configs/render.yaml"
elif phase == "webui":
cfg_defualt = "./configs/webui.yaml"
group.add_argument(
"--cfg",
type=str,
required=False,
default=cfg_defualt,
help="config file",
)
# Parse for each phase
if phase in ["train", "test"]:
group.add_argument("--batch_size",
type=int,
required=False,
help="training batch size")
group.add_argument("--num_nodes",
type=int,
required=False,
help="number of nodes")
group.add_argument("--device",
type=int,
nargs="+",
required=False,
help="training device")
group.add_argument("--task",
type=str,
required=False,
help="evaluation task type")
group.add_argument("--nodebug",
action="store_true",
required=False,
help="debug or not")
if phase == "demo":
group.add_argument("--task",
type=str,
required=False,
help="evaluation task type")
group.add_argument(
"--example",
type=str,
required=False,
help="input text and lengths with txt format",
)
group.add_argument(
"--out_dir",
type=str,
required=False,
help="output dir",
)
if phase == "render":
group.add_argument("--npy",
type=str,
required=False,
default=None,
help="npy motion files")
group.add_argument("--dir",
type=str,
required=False,
default=None,
help="npy motion folder")
group.add_argument("--fps",
type=int,
required=False,
default=30,
help="render fps")
group.add_argument(
"--mode",
type=str,
required=False,
default="sequence",
help="render target: video, sequence, frame",
)
params = parser.parse_args()
# Load yaml config files
OmegaConf.register_new_resolver("eval", eval)
cfg_assets = OmegaConf.load(params.cfg_assets)
cfg_base = OmegaConf.load(pjoin(cfg_assets.CONFIG_FOLDER, 'default.yaml'))
cfg_exp = OmegaConf.merge(cfg_base, OmegaConf.load(params.cfg))
if not cfg_exp.FULL_CONFIG:
cfg_exp = get_module_config(cfg_exp, cfg_assets.CONFIG_FOLDER)
cfg = OmegaConf.merge(cfg_exp, cfg_assets)
# Update config with arguments
if phase in ["train", "test"]:
cfg.TRAIN.BATCH_SIZE = params.batch_size if params.batch_size else cfg.TRAIN.BATCH_SIZE
cfg.DEVICE = params.device if params.device else cfg.DEVICE
cfg.NUM_NODES = params.num_nodes if params.num_nodes else cfg.NUM_NODES
cfg.model.params.task = params.task if params.task else cfg.model.params.task
cfg.DEBUG = not params.nodebug if params.nodebug is not None else cfg.DEBUG
# Force no debug in test
if phase == "test":
cfg.DEBUG = False
cfg.DEVICE = [0]
print("Force no debugging and one gpu when testing")
if phase == "demo":
cfg.DEMO.EXAMPLE = params.example
cfg.DEMO.TASK = params.task
cfg.TEST.FOLDER = params.out_dir if params.out_dir else cfg.TEST.FOLDER
os.makedirs(cfg.TEST.FOLDER, exist_ok=True)
if phase == "render":
if params.npy:
cfg.RENDER.NPY = params.npy
cfg.RENDER.INPUT_MODE = "npy"
if params.dir:
cfg.RENDER.DIR = params.dir
cfg.RENDER.INPUT_MODE = "dir"
if params.fps:
cfg.RENDER.FPS = float(params.fps)
cfg.RENDER.MODE = params.mode
# Debug mode
if cfg.DEBUG:
cfg.NAME = "debug--" + cfg.NAME
cfg.LOGGER.WANDB.params.offline = True
cfg.LOGGER.VAL_EVERY_STEPS = 1
# Resume config
cfg = resume_config(cfg)
return cfg