-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfig.yaml
61 lines (45 loc) · 969 Bytes
/
config.yaml
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
model:
name: "model1"
num_feats: 36
batch_size: 4
use_speaker: False
use_dimension: False
num_classes: 3
loss:
lambda_gp: 5
lambda_g_emo_cls: 1
lambda_g_spk_cls: 1
lambda_g_dim_cls: 1
lambda_cycle: 3
lambda_id: 2
num_iters: 20
num_iters_decay: 10
resume_iters: 0
train_classifier: True
c_to_g_ratio: 1
c_to_d_ratio: 1
optimizer:
beta1: 0.5
beta2: 0.999
g_lr: 0.0001
d_lr: 0.0001
emo_cls_lr: 0.0001
speaker_cls_lr: 0.0001
dim_cls_lr: 0.0001
logs:
use_tensorboard: True
log_dir: './logs'
sample_dir: './samples'
model_save_dir: './checkpoints'
log_every: 1
sample_every: 10000
test_every: 1000
model_save_every: 2
data:
dataset_dir: "./processed_data"
sample_set_dir: './processed_data/samples/'
train_test_split: 0.9
normalise: True
type: 'world'
verbose: False
device: torch.device('cpu')