Training remains stable for about eighteen hours since the job restarted itself at 7:39 p.m. ET on September 1. A faulty InfiniBand port on one host kept dropping its link until the job lost that node. InfiniBand is the high-speed network the GPUs use to exchange gradients. The cluster's job scheduler resumed from the last checkpoint without human help. That is the second hardware fault it has cleared on its own, after the lost node on August 27. No fault has been reported since.
One architectural question stays open. ClassicLarry, who posts as Larry on Discord, opened #8818 because the weights behind the attention gate keep growing in norm, far beyond anything seen on the scaling ladder — the smaller runs trained to predict how this one would behave. The gate scales each attention head's output through a squashing function, so as the norm grows the gate saturates closed and stops responding to training. In the first layer it is already shut for almost every token in the vocabulary; deeper layers are not. Even so, tests that zero out attention in a saved checkpoint show the first ten of the model's 48 layers still matter, because most of their work runs through the feed-forward path rather than attention. ClassicLarry plans no intervention while the loss stays below the curve the ladder predicted, which it is.
The router, which picks the few experts that handle each token, grows the same way, so he proposed light weight decay on the gate and router — a steady pull of the weights back toward zero that fades out by the end of the run — to keep both trainable late on. Pull request #8833 would make that decay the default in the shared training recipe. It is still open, so the September 1 restart resumed without it. An overnight checkpoint test showed the model leans hard on the gate, so at 2:27 a.m. ET on September 2 he cut the proposed decay from 0.05 to 0.02, weak enough that the model can adapt as the norm falls. At 12:36 p.m. ET he opened #8854 to pin a permanent checkpoint just past the point where the decay would switch on, so the decayed run has a fixed comparison point against the undecayed one. Kaiyue-Wen asked what the decay costs in predictability, because the ladder runs that set this run's target loss trained without it; Larry replied that the ladder cannot settle it, since this run's gate is not tracking the ladder in the first place. Percy Liang argued that a statistic which does not hold across model sizes deserves its own investigation, separate from the run.