-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmusiclm_small.json
104 lines (98 loc) · 2.74 KB
/
musiclm_small.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"global_cfg": {
"semantic_audio_length_seconds": 10.0,
"coarse_audio_length_seconds": 10.0,
"continuation_audio_length_seconds":10.0,
"fine_audio_length_seconds": 2.0,
"clap_audio_length_seconds": 10.0,
"num_coarse_quantizers": 3,
"num_fine_quantizers": 5
},
"clap_rvq_cfg": {
"enable_fusion": false,
"rq_num_quantizers": 12,
"codebook_size": 1024,
"rq_ema_decay": 0.95,
"threshold_ema_dead_code": 0.5
},
"hubert_kmeans_cfg": {
"model_name": "m-a-p/MERT-v0",
"normalize_embeds": true,
"embed_layer": 7,
"target_sample_hz": 16000,
"seq_len_multiple_of": 320,
"codebook_size": 1024,
"output_hz": 75
},
"encodec_cfg": {
"bandwidth": 6.0,
"codebook_size": 1024,
"output_hz": 75
},
"semantic_cfg": {
"dim": 1024,
"depth": 6,
"heads": 8,
"attn_dropout": 0.0,
"ff_dropout": 0.1,
"grad_shrink_alpha": 0.1,
"non_causal_prefix_size": 0,
"relative_position_bias_type": "continuous",
"use_memory_efficient_attention": false
},
"coarse_cfg": {
"dim": 1024,
"depth": 6,
"heads": 8,
"attn_dropout": 0.0,
"ff_dropout": 0.1,
"grad_shrink_alpha": 0.1,
"non_causal_prefix_size": 0,
"relative_position_bias_type": "continuous",
"use_memory_efficient_attention": false
},
"singsong_cfg": {
"dim": 768,
"depth": 16,
"heads": 16,
"attn_dropout": 0.0,
"ff_dropout": 0.1,
"grad_shrink_alpha": 0.1,
"non_causal_prefix_size": 0,
"relative_position_bias_type": "continuous",
"use_memory_efficient_attention": false
},
"continuation_cfg": {
"dim": 1024,
"depth": 12,
"heads": 16,
"attn_dropout": 0.0,
"ff_dropout": 0.1,
"grad_shrink_alpha": 0.1,
"non_causal_prefix_size": 0,
"relative_position_bias_type": "continuous",
"use_memory_efficient_attention": false
},
"fine_cfg": {
"dim": 1024,
"depth": 6,
"heads": 8,
"attn_dropout": 0.0,
"ff_dropout": 0.1,
"grad_shrink_alpha": 0.1,
"non_causal_prefix_size": 0,
"relative_position_bias_type": "continuous",
"use_memory_efficient_attention": false
},
"llambada_cfg": {
"dim": 768,
"depth": 16,
"heads": 16,
"attn_dropout": 0.0,
"ff_dropout": 0.1,
"grad_shrink_alpha": 0.1,
"non_causal_prefix_size": 0,
"relative_position_bias_type": "continuous",
"use_memory_efficient_attention": false
}
}