forked from albanie/collaborative-experts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse_config.py
221 lines (176 loc) · 7.9 KB
/
parse_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
216
217
218
219
220
221
import os
import time
import pprint
import logging
from typing import Dict, List
from pathlib import Path
from datetime import datetime
from operator import getitem
from functools import reduce
import mock
from typeguard import typechecked
from zsvision.zs_utils import load_json_config, set_nested_key_val
from utils import write_json
from logger import setup_logging
class ConfigParser:
def __init__(self, args, options='', timestamp=True, slave_mode=False):
# slave_mode - when calling the config parser form an existing process, we
# avoid reinitialising the logger and ignore sys.argv when argparsing.
# parse default and custom cli options
for opt in options:
args.add_argument(*opt.flags, default=None, type=opt.type)
if slave_mode:
args = args.parse_args(args=[])
elif isinstance(args, mock.Mock):
pass
else:
args = args.parse_args()
if args.device:
os.environ["CUDA_VISIBLE_DEVICES"] = args.device
if args.resume and not slave_mode:
self.resume = Path(args.resume)
# self.cfg_fname = self.resume.parent / 'config.json'
else:
msg_no_cfg = "Config file must be specified"
assert args.config is not None, msg_no_cfg
self.resume = None
self.cfg_fname = Path(args.config)
config = load_json_config(self.cfg_fname)
self._config = _update_config(config, options, args)
if self._config.get("eval_config", False):
# validate path to evaluation file
eval_cfg_path = self._config.get("eval_config")
msg = f"eval_config was specified, but `{eval_cfg_path}` does not exist"
assert Path(self._config.get("eval_config")).exists(), msg
# set save_dir where trained model and log will be saved.
if "tester" in self.config:
save_dir = Path(self.config['tester']['save_dir'])
else:
save_dir = Path(self.config['trainer']['save_dir'])
timestamp = datetime.now().strftime(r"%Y-%m-%d_%H-%M-%S") if timestamp else ""
if slave_mode:
timestamp = f"{timestamp}-eval-worker"
exper_name = self.set_exper_name(args, config=config)
if getattr(args, "group_id", False):
subdir = Path(args.group_id) / f"seed-{args.group_seed}" / timestamp
else:
subdir = timestamp
# store challenge experiments in a further subdirectory
if self._config.get("challenge_mode", False):
challenge_tag = "cvpr2020-challenge"
exper_name = f"{challenge_tag}/{exper_name}"
self._save_dir = save_dir / 'models' / exper_name / subdir
self._web_log_dir = save_dir / 'web' / exper_name / subdir
self._log_dir = save_dir / 'log' / exper_name / subdir
self._exper_name = exper_name
self._args = args
# if set, remove all previous experiments with the current config
if vars(args).get("purge_exp_dir", False):
for dirpath in (self._save_dir, self._log_dir, self._web_log_dir):
config_dir = dirpath.parent
existing = list(config_dir.glob("*"))
print(f"purging {len(existing)} directories from config_dir...")
tic = time.time()
os.system(f"rm -rf {config_dir}")
print(f"Finished purge in {time.time() - tic:.3f}s")
self.save_dir.mkdir(parents=True, exist_ok=True)
self.log_dir.mkdir(parents=True, exist_ok=True)
# save updated config file to the checkpoint dir
write_json(self.config, self.save_dir / 'config.json')
# configure logging module
if not slave_mode:
self.log_path = setup_logging(self.log_dir)
self.log_levels = {0: logging.WARNING, 1: logging.INFO, 2: logging.DEBUG}
def set_exper_name(self, args, config):
# We assume that the config files are organised into directories such that
# each directory has the name of the dataset.
dataset_name = self.cfg_fname.parent.stem
exper_name = f"{dataset_name}-{self.cfg_fname.stem}"
if args.custom_args:
key_val_lists = args.custom_args.split("+")
for key_val_pair in key_val_lists:
print(f"parsing key-val pair : {key_val_pair}")
key, val = key_val_pair.split("@")
set_nested_key_val(key, val, self._config)
# remove periods from key names
key_ = key.replace("_.", "--")
# remove commas from value names
val = val.replace(",", "--")
custom_tag = "-".join(key_.split(".")[-2:])
exper_name = f"{exper_name}-{custom_tag}-{val}"
if getattr(args, "disable_workers", False):
print("Disabling data loader workers....")
config["data_loader"]["args"]["num_workers"] = 0
if getattr(args, "train_single_epoch", False):
print("Restricting training to a single epoch....")
config["trainer"]["epochs"] = 1
config["trainer"]["save_period"] = 1
config["trainer"]["skip_first_n_saves"] = 0
exper_name = f"{exper_name}-train-single-epoch"
return exper_name
def init(self, name, module, *args, **kwargs):
"""Finds a function handle with the name given as 'type' in config, and returns
the instance initialized with corresponding keyword args given as 'args'.
"""
module_name = self[name]['type']
module_args = dict(self[name]['args'])
msg = (f"Fail for {module_name}\n"
f"overwriting kwargs given in config file is not allowed\n"
f"passed kwargs: {kwargs}\n"
f"for module_args: {module_args})")
assert all([k not in module_args for k in kwargs]), msg
module_args.update(kwargs)
return getattr(module, module_name)(*args, **module_args)
def __getitem__(self, name):
return self.config[name]
def __len__(self):
# NOTE: This is used for boolean checking deep inside ray.tune, so we required it
# to be defined.
return len(self.config)
def __setitem__(self, name, value):
self.config[name] = value
def __contains__(self, name):
return name in self.config
def get(self, name, default):
return self.config.get(name, default)
def keys(self):
return self.config.keys()
def get_logger(self, name, verbosity=2):
msg_verbosity = "verbosity option {} is invalid. Valid options are {}."
msg_verbosity = msg_verbosity.format(verbosity, self.log_levels.keys())
assert verbosity in self.log_levels, msg_verbosity
logger = logging.getLogger(name)
logger.setLevel(self.log_levels[verbosity])
return logger
# setting read-only attributes
@property
def config(self):
return self._config
@property
def save_dir(self):
return self._save_dir
@property
def log_dir(self):
return self._log_dir
def __repr__(self):
return pprint.PrettyPrinter().pformat(self.__dict__)
def items(self):
return self._config.items()
# helper functions used to update config dict with custom cli options
def _update_config(config, options, args):
for opt in options:
value = getattr(args, _get_opt_name(opt.flags))
if value is not None:
_set_by_path(config, opt.target, value)
return config
def _get_opt_name(flags):
for flg in flags:
if flg.startswith('--'):
return flg.replace('--', '')
return flags[0].replace('--', '')
def _set_by_path(tree, keys, value):
"""Set a value in a nested object in tree by sequence of keys."""
_get_by_path(tree, keys[:-1])[keys[-1]] = value
def _get_by_path(tree, keys):
"""Access a nested object in tree by sequence of keys."""
return reduce(getitem, keys, tree)