add config.json
Browse files- config.json +31 -0
config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"DacModel"
|
4 |
+
],
|
5 |
+
"codebook_dim": 8,
|
6 |
+
"codebook_loss_weight": 1.0,
|
7 |
+
"codebook_size": 1024,
|
8 |
+
"commitment_loss_weight": 0.25,
|
9 |
+
"decoder_hidden_size": 1536,
|
10 |
+
"downsampling_ratios": [
|
11 |
+
2,
|
12 |
+
4,
|
13 |
+
5,
|
14 |
+
8
|
15 |
+
],
|
16 |
+
"encoder_hidden_size": 64,
|
17 |
+
"hidden_size": 1024,
|
18 |
+
"hop_length": 512,
|
19 |
+
"model_type": "dac",
|
20 |
+
"n_codebooks": 4,
|
21 |
+
"quantizer_dropout": 0.0,
|
22 |
+
"sampling_rate": 24000,
|
23 |
+
"torch_dtype": "float32",
|
24 |
+
"transformers_version": "4.42.0.dev0",
|
25 |
+
"upsampling_ratios": [
|
26 |
+
8,
|
27 |
+
5,
|
28 |
+
4,
|
29 |
+
2
|
30 |
+
]
|
31 |
+
}
|