config.json (1390B)
1 { 2 "version": "0.4.0", 3 "architecture": "WaveNet", 4 "config": { 5 "layers": [ 6 { 7 "input_size": 1, 8 "condition_size": 1, 9 "head_size": 8, 10 "channels": 16, 11 "kernel_size": 3, 12 "dilations": [ 13 1, 14 2, 15 4, 16 8, 17 16, 18 32, 19 64, 20 128, 21 256, 22 512 23 ], 24 "activation": "Tanh", 25 "gated": false, 26 "head_bias": false 27 }, 28 { 29 "input_size": 16, 30 "condition_size": 1, 31 "head_size": 1, 32 "channels": 8, 33 "kernel_size": 3, 34 "dilations": [ 35 1, 36 2, 37 4, 38 8, 39 16, 40 32, 41 64, 42 128, 43 256, 44 512 45 ], 46 "activation": "Tanh", 47 "gated": false, 48 "head_bias": true 49 } 50 ], 51 "head": null, 52 "head_scale": 1.0 53 } 54 }