fix: initialize smear and backout lambdas in init_weights

This commit is contained in:
Marcin Bogdanski
2026-04-03 20:39:55 +00:00
parent a445144d39
commit 94b73ad29a
+2
View File
@@ -237,6 +237,8 @@ class GPT(nn.Module):
# Decaying x0 init: earlier layers get more input embedding blending
for i in range(n_layer):
self.x0_lambdas.data[i] = 0.20 - (0.15 * i / max(n_layer - 1, 1))
self.smear_lambda.fill_(0.0)
self.backout_lambda.fill_(0.2)
# Value embeddings (init like c_v: uniform with same std)
for ve in self.value_embeds.values():