File size: 537 Bytes
f3350b1
 
 
 
 
 
 
 
 
 
 
 
 
7ce90f2
f3350b1
dbfea06
7ce90f2
f3350b1
79a7f1b
f3350b1
 
 
 
 
 
 
 
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
# @package _global_
model:
  _target_: remfx.models.RemFX
  lr: 1e-4
  lr_beta1: 0.95
  lr_beta2: 0.999
  lr_eps: 1e-6
  lr_weight_decay: 1e-3
  sample_rate: ${sample_rate}
  network:
    _target_: remfx.models.TCNModel
    ninputs: 1
    noutputs: 1
    nblocks: 20
    channel_growth: 0
    channel_width: 256
    kernel_size: 7
    stack_size: 10
    dilation_growth: 2
    condition: False
    latent_dim: 2
    norm_type: "identity"
    causal: False
    estimate_loudness: False
    sample_rate: ${sample_rate}
    num_bins: 1025