File size: 795 Bytes
3aa4060
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
train:
  seed: 37
  train_files: "files/train.txt"
  valid_files: "files/valid.txt"
  log_dir: 'logs/grad_svc'
  full_epochs: 500
  fast_epochs: 100
  learning_rate: 2e-4
  batch_size: 8
  test_size: 4
  test_step: 5
  save_step: 10
  pretrain: "grad_pretrain/gvc.pretrain.pth"
#############################
data: 
  segment_size: 16000  # WARNING: base on hop_length
  max_wav_value: 32768.0
  sampling_rate: 32000
  filter_length: 1024
  hop_length: 320
  win_length: 1024
  mel_channels: 100
  mel_fmin: 40.0
  mel_fmax: 16000.0
#############################
grad:
  n_mels: 100
  n_vecs: 256
  n_pits: 256
  n_spks: 256
  n_embs: 64

  # encoder parameters
  n_enc_channels: 192
  filter_channels: 512

  # decoder parameters
  dec_dim: 96
  beta_min: 0.05
  beta_max: 20.0
  pe_scale: 1000