-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
86 lines (73 loc) · 2.18 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
from dataset.config import Config as UnetDataConfig
from model.config import Config as UnetModelConfig
from utils.noam_schedule import NoamScheduler
class UnetTrainConfig:
"""Configuration for training loop.
"""
def __init__(self):
# optimizer
self.lr_policy = 'fixed'
self.learning_rate = 0.000002
# self.lr_policy = 'noam'
# self.learning_rate = 1
# self.lr_params = {
# 'warmup_steps': 4000,
# 'channels': 64
# }
self.beta1 = 0.9
self.beta2 = 0.98
self.eps = 1e-9
# 13000:100
self.split = 3001*8
# self.split = 50
self.bufsiz = 50
self.epoch = 10000
# path config
self.log = './log'
self.ckpt = './ckpt'
self.sounds = './sounds'
# model name
self.model_type = None
self.name = 'saraga-8'
# interval configuration
self.eval_intval = 5000
self.ckpt_intval = 10000
def lr(self):
"""Generate proper learning rate scheduler.
"""
mapper = {
'noam': NoamScheduler
}
if self.lr_policy == 'fixed':
return self.learning_rate
if self.lr_policy in mapper:
return mapper[self.lr_policy](self.learning_rate, **self.lr_params)
raise ValueError('invalid lr_policy')
class Config():
"""Integrated configuration.
"""
def __init__(self):
self.data = UnetDataConfig()
self.model = UnetModelConfig()
self.train = UnetTrainConfig()
def dump(self):
"""Dump configurations into serializable dictionary.
"""
return {k: vars(v) for k, v in vars(self).items()}
@staticmethod
def load(dump_):
"""Load dumped configurations into new configuration.
"""
conf = Config()
for k, v in dump_.items():
if hasattr(conf, k):
obj = getattr(conf, k)
load_state(obj, v)
return conf
def load_state(obj, dump_):
"""Load dictionary items to attributes.
"""
for k, v in dump_.items():
if hasattr(obj, k):
setattr(obj, k, v)
return obj