-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.py
65 lines (50 loc) · 1.44 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
import tensorflow as tf
from speechset import Config as DataConfig, AcousticDataset
from mlptts.config import Config as ModelConfig
class TrainConfig:
"""Configuration for training loop.
"""
def __init__(self):
self.hash = 'undefined'
# optimizer
self.learning_rate = 1e-3
self.beta1 = 0.9
self.beta2 = 0.98
self.eps = 1e-9
# 13000:100
self.split = 13000
self.bufsiz = 48
self.epoch = 200
# path config
self.log = './log'
self.ckpt = './ckpt'
# model name
self.name = 'mlptts'
class Config:
"""Integrated configuration.
"""
def __init__(self):
self.data = DataConfig()
self.model = ModelConfig(AcousticDataset.VOCABS, self.data.mel)
self.train = TrainConfig()
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