File size: 1,534 Bytes
cf1dce9 |
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 |
{
"encoder_name": "WavLM",
"encoder_config": {
"hidden_dims": [512, 512, 512, 512, 512, 512, 512],
"kernel_sizes": [10, 3, 3, 3, 3, 2, 2],
"strides": [5, 2, 2, 2, 2, 2, 2],
"num_layers": 6,
"dim": 1024,
"ffn_dim": 4096,
"num_heads": 16,
"num_buckets": 320,
"max_distance": 800,
"dropout": 0.0,
"conv_pos": 128,
"conv_pos_groups": 16
},
"compressor_name": "FocalEncoder",
"compressor_config": {
"input_dim": 1024,
"output_dim": 13,
"hidden_dims": [1024, 512, 256],
"downscale_factors": [2, 1, 1],
"focal_window": 7,
"focal_level": 2,
"focal_factor": 2,
"dropout": 0.0,
"use_post_norm": false,
"use_layerscale": false,
"layerscale_init": 0.0001,
"normalize_modulator": false
},
"quantizer_name": "BinarySphericalQuantizer",
"quantizer_config": {
"codebook_size": 8192
},
"decompressor_name": "FocalDecoder",
"decompressor_config": {
"input_dim": 13,
"output_dim": 1024,
"hidden_dims": [256, 512, 1024],
"upscale_factors": [1, 1, 2],
"focal_window": 7,
"focal_level": 2,
"focal_factor": 2,
"dropout": 0.0,
"use_post_norm": false,
"use_layerscale": false,
"layerscale_init": 0.0001,
"normalize_modulator": false
},
"decoder_name": "Vocos",
"decoder_config": {
"input_channels": 1024,
"num_layers": 8,
"dim": 512,
"ffn_dim": 1536,
"kernel_size": 7,
"padding": 3,
"layerscale_init": null,
"n_fft": 1024,
"hop_length": 320
}
}
|