-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.py
71 lines (57 loc) · 1.58 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
from speechset.config import Config as DataConfig
from vlbdiffwave.config import Config as ModelConfig
class TrainConfig:
"""Configuration for training loop.
"""
def __init__(self, hop: int):
"""Initializer.
Args:
hop: stft hop size.
"""
# optimizer
self.learning_rate = 2e-4
self.beta1 = 0.9
self.beta2 = 0.99
self.eps = 1e-9
# 13000:100
self.split = 13000
self.bufsiz = 48
# train iters
self.epoch = 100
# segment size
self.segsize = 32 * hop
# path config
self.log = './log'
self.ckpt = './ckpt'
# model name
self.name = 'l1'
# commit hash
self.hash = 'unknown'
class Config:
"""Integrated configuration.
"""
def __init__(self):
self.data = DataConfig()
self.model = ModelConfig(self.data.hop)
self.train = TrainConfig(self.data.hop)
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