darios commited on
Commit
274e641
·
verified ·
1 Parent(s): 6fcedcc

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +101 -0
config.json ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backbone": {
3
+ "d_model": 2048,
4
+ "d_intermediate": 0,
5
+ "attn_mlp_d_intermediate": 8192,
6
+ "n_layer": 26,
7
+ "ssm_cfg": {},
8
+ "attn_layer_idx": [
9
+ 0,
10
+ 1,
11
+ 2,
12
+ 3,
13
+ 4,
14
+ 5,
15
+ 6,
16
+ 7,
17
+ 8,
18
+ 9,
19
+ 10,
20
+ 11,
21
+ 12,
22
+ 13,
23
+ 14,
24
+ 15,
25
+ 16,
26
+ 17,
27
+ 18,
28
+ 19,
29
+ 20,
30
+ 21,
31
+ 22,
32
+ 23,
33
+ 24,
34
+ 25
35
+ ],
36
+ "attn_cfg": {
37
+ "causal": true,
38
+ "num_heads": 16,
39
+ "num_heads_kv": 4,
40
+ "rotary_emb_dim": 128,
41
+ "rotary_emb_interleaved": true,
42
+ "qkv_proj_bias": false,
43
+ "out_proj_bias": false
44
+ },
45
+ "rms_norm": false,
46
+ "residual_in_fp32": false,
47
+ "norm_epsilon": 1e-05
48
+ },
49
+ "prefix_conditioner": {
50
+ "conditioners": [
51
+ {
52
+ "type": "EspeakPhonemeConditioner",
53
+ "name": "espeak"
54
+ },
55
+ {
56
+ "cond_dim": 128,
57
+ "uncond_type": "learned",
58
+ "projection": "linear",
59
+ "type": "PassthroughConditioner",
60
+ "name": "speaker"
61
+ },
62
+ {
63
+ "input_dim": 8,
64
+ "uncond_type": "learned",
65
+ "type": "FourierConditioner",
66
+ "name": "emotion"
67
+ },
68
+ {
69
+ "min_val": 0,
70
+ "max_val": 24000,
71
+ "uncond_type": "learned",
72
+ "type": "FourierConditioner",
73
+ "name": "fmax"
74
+ },
75
+ {
76
+ "min_val": 0,
77
+ "max_val": 400,
78
+ "uncond_type": "learned",
79
+ "type": "FourierConditioner",
80
+ "name": "pitch_std"
81
+ },
82
+ {
83
+ "min_val": 0,
84
+ "max_val": 40,
85
+ "uncond_type": "learned",
86
+ "type": "FourierConditioner",
87
+ "name": "speaking_rate"
88
+ },
89
+ {
90
+ "min_val": -1,
91
+ "max_val": 126,
92
+ "uncond_type": "learned",
93
+ "type": "IntegerConditioner",
94
+ "name": "language_id"
95
+ }
96
+ ],
97
+ "projection": "linear"
98
+ },
99
+ "eos_token_id": 1024,
100
+ "masked_token_id": 1025
101
+ }