aigencydev commited on
Commit
3b169f2
·
verified ·
1 Parent(s): 782e1d6

Standart yukleme: auto_map + ErkLinearForCausalLM

Browse files
Files changed (1) hide show
  1. config.json +15 -7
config.json CHANGED
@@ -1,12 +1,20 @@
1
  {
2
- "model_type": "erk-linear-hybrid",
 
 
 
 
 
3
  "base_model": "ecloudtech/Erk-14B",
4
- "architecture": "Qwen3-14B tabanli hibrit; 8/40 dikkat katmani Gated DeltaNet (%20 lineer)",
 
 
 
 
 
 
5
  "hidden_size": 5120,
6
  "num_hidden_layers": 40,
7
- "gdn_layers": [1, 3, 5, 7, 10, 36, 38, 39],
8
- "linear_ratio": 0.20,
9
- "gdn_config": {"head_dim": 128, "num_heads": 40, "use_gate": true, "use_short_conv": true, "mode": "chunk"},
10
- "load_fn": "modeling_erk_linear.load_erk_linear",
11
- "requires": ["transformers", "flash-linear-attention", "safetensors", "huggingface_hub"]
12
  }
 
1
  {
2
+ "model_type": "erk_linear",
3
+ "architectures": ["ErkLinearForCausalLM"],
4
+ "auto_map": {
5
+ "AutoConfig": "configuration_erk_linear.ErkLinearConfig",
6
+ "AutoModelForCausalLM": "modeling_erk_linear.ErkLinearForCausalLM"
7
+ },
8
  "base_model": "ecloudtech/Erk-14B",
9
+ "gdn_layers": [1, 3, 5, 7, 10, 36, 38, 39],
10
+ "gdn_head_dim": 128,
11
+ "gdn_num_heads": 40,
12
+ "gdn_use_gate": true,
13
+ "gdn_use_short_conv": true,
14
+ "gdn_mode": "chunk",
15
+ "gdn_weights_file": "gdn_weights.safetensors",
16
  "hidden_size": 5120,
17
  "num_hidden_layers": 40,
18
+ "dtype": "bfloat16",
19
+ "transformers_version": "5.13.0"
 
 
 
20
  }