aigencydev commited on
Commit
84fac55
·
verified ·
1 Parent(s): bd06532

Standart yukleme: auto_map + ErkLinearForCausalLM

Browse files
Files changed (1) hide show
  1. configuration_erk_linear.py +45 -0
configuration_erk_linear.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Erk-Linear yapilandirmasi — %20-lineer hibrit (8/40 dikkat katmani Gated DeltaNet)."""
2
+ from transformers import PretrainedConfig
3
+
4
+
5
+ class ErkLinearConfig(PretrainedConfig):
6
+ """Hibridin kendisi bir govde tasimaz; govde `base_model`'den yuklenir.
7
+
8
+ Bu yapilandirma yalnizca hangi katmanlarin lineerlestirildigini ve Gated DeltaNet
9
+ modullerinin nasil kurulacagini tanimlar. Agirliklar iki kaynaktan gelir:
10
+ - govde (32 softmax katmani + gomme/LM basi) : `base_model` deposundan
11
+ - 8 GDN katmani : bu deponun gdn_weights.safetensors
12
+ """
13
+
14
+ model_type = "erk_linear"
15
+
16
+ def __init__(
17
+ self,
18
+ base_model: str = "ecloudtech/Erk-14B",
19
+ gdn_layers=None,
20
+ hidden_size: int = 5120,
21
+ num_hidden_layers: int = 40,
22
+ gdn_head_dim: int = 128,
23
+ gdn_num_heads: int = 40,
24
+ gdn_use_gate: bool = True,
25
+ gdn_use_short_conv: bool = True,
26
+ gdn_mode: str = "chunk",
27
+ gdn_weights_file: str = "gdn_weights.safetensors",
28
+ **kwargs,
29
+ ):
30
+ self.base_model = base_model
31
+ self.gdn_layers = list(gdn_layers) if gdn_layers is not None else [1, 3, 5, 7, 10, 36, 38, 39]
32
+ self.hidden_size = hidden_size
33
+ self.num_hidden_layers = num_hidden_layers
34
+ self.gdn_head_dim = gdn_head_dim
35
+ self.gdn_num_heads = gdn_num_heads
36
+ self.gdn_use_gate = gdn_use_gate
37
+ self.gdn_use_short_conv = gdn_use_short_conv
38
+ self.gdn_mode = gdn_mode
39
+ self.gdn_weights_file = gdn_weights_file
40
+ super().__init__(**kwargs)
41
+
42
+ @property
43
+ def linear_ratio(self) -> float:
44
+ """Lineerlestirilen dikkat katmanlarinin orani (8/40 = 0.20)."""
45
+ return len(self.gdn_layers) / float(self.num_hidden_layers)