choihj0706
commited on
Commit
•
d3403b1
1
Parent(s):
038a911
Upload config.json with huggingface_hub
Browse files- config.json +37 -61
config.json
CHANGED
@@ -1,62 +1,38 @@
|
|
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 |
-
"learning_rate": 0.0001,
|
40 |
-
"weight_decay": 0.01,
|
41 |
-
"gradient_clipping": 1.0
|
42 |
-
},
|
43 |
-
"generation": {
|
44 |
-
"sample_rate": 32000,
|
45 |
-
"audio_format": "wav",
|
46 |
-
"num_samples": 5,
|
47 |
-
"max_duration": 30.0,
|
48 |
-
"temperature": 1.0,
|
49 |
-
"top_k": 250,
|
50 |
-
"top_p": 0.9
|
51 |
-
},
|
52 |
-
"logging": {
|
53 |
-
"log_tensorboard": true,
|
54 |
-
"log_wandb": true,
|
55 |
-
"wandb_project": "music_generation",
|
56 |
-
"log_updates": 10
|
57 |
-
},
|
58 |
-
"hardware": {
|
59 |
-
"device": "cuda",
|
60 |
-
"num_gpus": 4
|
61 |
-
}
|
62 |
-
}
|
|
|
1 |
{
|
2 |
+
"architectures": [
|
3 |
+
"EncodecModel"
|
4 |
+
],
|
5 |
+
"audio_channels": 1,
|
6 |
+
"chunk_length_s": null,
|
7 |
+
"codebook_dim": 128,
|
8 |
+
"codebook_size": 2048,
|
9 |
+
"compress": 2,
|
10 |
+
"dilation_growth_rate": 2,
|
11 |
+
"hidden_size": 128,
|
12 |
+
"kernel_size": 7,
|
13 |
+
"last_kernel_size": 7,
|
14 |
+
"model_type": "encodec",
|
15 |
+
"norm_type": "weight_norm",
|
16 |
+
"normalize": false,
|
17 |
+
"num_filters": 64,
|
18 |
+
"num_lstm_layers": 2,
|
19 |
+
"num_residual_layers": 1,
|
20 |
+
"overlap": null,
|
21 |
+
"pad_mode": "reflect",
|
22 |
+
"residual_kernel_size": 3,
|
23 |
+
"sampling_rate": 32000,
|
24 |
+
"target_bandwidths": [
|
25 |
+
2.2
|
26 |
+
],
|
27 |
+
"torch_dtype": "float32",
|
28 |
+
"transformers_version": "4.31.0.dev0",
|
29 |
+
"trim_right_ratio": 1.0,
|
30 |
+
"upsampling_ratios": [
|
31 |
+
8,
|
32 |
+
5,
|
33 |
+
4,
|
34 |
+
4
|
35 |
+
],
|
36 |
+
"use_causal_conv": false,
|
37 |
+
"use_conv_shortcut": false
|
38 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|