pragmaticcs commited on
Commit
4206ccb
·
verified ·
1 Parent(s): 332b83f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -127,15 +127,15 @@ This keeps input/output projections closer to the base and applies the strongest
127
 
128
  ## Layer-Stratified Policies
129
 
130
- | Parameter Group | Match Substring | Policy | Density ($p$) | Base Scale ($\beta$) |
131
  | :--- | :--- | :---: | :---: | :---: |
132
  | **Embeddings / LM head** | `embed_tokens`, `lm_head` | Linear | — | 1.00 |
133
  | **Norms / biases** | `norm`, `bias`, 1D tensors | Linear | — | 1.00 |
134
  | **DeltaNet recurrent state** | `a_log`, `dt_bias`, `conv1d` | Linear | — | 1.00 |
135
  | **MoE router gate** | `mlp.gate.weight`, `block_sparse_moe.gate` | Linear | — | 1.00 |
136
- | **MoE shared expert** | `shared_expert` | DARE-TIES | 0.70 | 0.60 |
137
- | **Attention projections** | `attn`, `rotary`, `in_proj`, `out_proj`, `x_proj` | DARE-TIES | 0.75 | 0.60 |
138
- | **Routed experts (×256)** | `experts`, `mlp` | DARE-TIES | 0.65 | 0.55 |
139
 
140
  - **Router protection:** Gate weights use linear interpolation (~57% base, ~43% donors) rather than DARE to avoid destabilizing expert routing.
141
  - **DeltaNet stability:** Recurrent state kernels are excluded from DARE to prevent divergence in the linear-attention state space.
 
127
 
128
  ## Layer-Stratified Policies
129
 
130
+ | Parameter Group | Match Substring | Policy | Density (p) | Base Scale (β) |
131
  | :--- | :--- | :---: | :---: | :---: |
132
  | **Embeddings / LM head** | `embed_tokens`, `lm_head` | Linear | — | 1.00 |
133
  | **Norms / biases** | `norm`, `bias`, 1D tensors | Linear | — | 1.00 |
134
  | **DeltaNet recurrent state** | `a_log`, `dt_bias`, `conv1d` | Linear | — | 1.00 |
135
  | **MoE router gate** | `mlp.gate.weight`, `block_sparse_moe.gate` | Linear | — | 1.00 |
136
+ | **MoE shared expert** | `shared_expert` | DARE‑TIES | 0.70 | 0.60 |
137
+ | **Attention projections** | `attn`, `rotary`, `in_proj`, `out_proj`, `x_proj` | DARE‑TIES | 0.75 | 0.60 |
138
+ | **Routed experts (×256)** | `experts`, `mlp` | DARE‑TIES | 0.65 | 0.55 |
139
 
140
  - **Router protection:** Gate weights use linear interpolation (~57% base, ~43% donors) rather than DARE to avoid destabilizing expert routing.
141
  - **DeltaNet stability:** Recurrent state kernels are excluded from DARE to prevent divergence in the linear-attention state space.