Temporarily reduce the learning-rate multiplier only for Q/K projections in the upper transformer layers during the first 100 warmup steps, then restore the matched baseline multiplier; this may improve 3k-step decoder pretraining sample...
Evidence
The local Titan snapshot can support the proposed fixed 100-step upper-layer Q/K LR damping mostly through existing config machinery: lr_scale_regex_initial, lr_scale_regex_initial_steps, and LRScaledSchedulersContainer. The smallest saf...
LOCAL completed
Recovery next
Recover the missing run evidence before retrying or changing experiment semantics: verify whether /persistent/.local/state/george-auto-research/logs/experiment_qk_warmup_control_0722_r1/training.log was never created, deleted, written to...
PP3 router-EMA lifecycle correctness
P10Score 0.49needs review
Fix pipeline-parallel MoE router EMA updates so only retained registered MoE layers are updated after splitting, and cache references match the live post-parallelization parameters. The repair must preserve PP1 behavior and enable the ma...
Evidence
Feasible as a local code repair: pipeline splitting currently prunes registered layers but leaves TransformerMoE._moe_layers stale, while EMA reference caching walks only live registered routers after parallelization. The smallest fix is...
Add one learnable RMSNorm to the complete output of every attention branch after output projection and gating, and to every dense, routed-expert, and shared-expert MLP branch after its down projection, immediately before each branch is a...
Evidence
Local 1B implementation is feasible with a small architecture flag and focused tests. The supplied historical commit 9f13144d implements a different residual-norm switch: it reuses existing input norms on sublayer outputs and can remove ...
In every dense, routed-expert, and shared-expert SwiGLU FFN, keep the SiLU gate branch unchanged and replace only the linear multiplicative branch z with the source one-sided token-adaptive mixture sum_k sigmoid(u_k^T x)*sigma_k(z), shar...
Evidence
Local implementation is structurally possible in Titan but not exactly specifiable from the supplied evidence because the required Type-II activation dictionary is missing. The relevant code paths are dense Transformer FeedForward, Trans...
Branch-specific RMSNorm projection scales
P9Score 0.56needs review
At every decoder Pre-RMSNorm, compute the RMS-normalized direction once, then replace the one shared affine scale with separately learned gamma_Q, gamma_K, and gamma_V vectors before the query, key, and value projections, plus separate g...
Evidence
The mechanism is mostly implementable in the target tree: current decoder PreNorms already centralize the single affine RMSNorm before attention and MLP branches, and MoE routed/shared experts have identifiable gate/up projection sites. ...
Full zero-init Polar Coordinate Position Embedding
P8Score 0.62needs review
Replacing RoPE with the full PoPE v3 mechanism - softplus query/key magnitudes, one scalar frequency per head dimension, and a learned per-layer/per-head/per-frequency phase delta zero-initialized and clamped to [-2*pi, 0] - will decoupl...
Evidence
The ICML 2026 camera-ready primary paper evaluates matched decoder-only language models on OpenWebText from 124M to 774M parameters. Reported RoPE-to-PoPE perplexity is 21.55 to 21.33 at 124M, 18.88 to 18.55 at 253M, and 15.85 to 15.45 a...
Rank-16 elementwise GatedNorm
P8Score 0.49needs review
Replace each decoder RMSNorm output covered by the source mechanism with rank-16 elementwise GatedNorm: for y=RMSNorm(x), compute y_gate=sigmoid(W_up(SiLU(W_down(y)))) and return y_gate*y. Preserve the baseline gated-attention mechanism,...
Evidence
The local 1B implementation is feasible without production code changes: the target snapshot already contains rank-configurable elementwise sigmoid low-rank GatedRMSNorm and MoE config wiring. The candidate should be generated downstream...
Implement the source anGPT architecture as one explicit compound candidate: use its dimension-derived fixed approximate normalization factors, LERP-style residual updates, and bounded directional weight parameterization instead of nGPT-s...
Evidence
Repository wiring can host an architecture candidate in TransformerMoE, and the matched local config should be generated from scripts/runs/tiny.yaml with fixed 3000 steps, 100 warmup, and 900 cooldown while retaining Muon weight decay. I...
Changing the pretraining objective to add MIR, an auxiliary next-token loss on randomly masked inputs, should improve held-out base-model loss at matched training tokens because input corruption regularizes repeated-data memorization and...
Evidence
The source proposes masked-input regularization for autoregressive decoder-only pretraining: add an auxiliary next-token prediction loss where inputs are randomly masked, aiming to improve data-constrained repeated-data training without ...
Current blocker
Repository analysis retry budget exhausted for idea_1278bd21deec473e
Full-AC probe recovery - health/directional only - completedRepository analysis retry budget exhausted for idea_1278bd21deec473e
Clean CE gate did not pass: candidate 3.306537 vs control 3.305000 (delta +0.001537). No 3000-step pair was launched.
Frobenius Hyperball Muon
P0Score 0.68needs review
Changing eligible Transformer matrix updates from decoupled weight decay to Muon Hyperball should improve held-out base-model loss under matched tokens or matched measured FLOPs because fixed Frobenius weight and update norms directly co...
Evidence
Hyperball replaces decoupled weight decay's implicit matrix-norm equilibrium with an explicit Frobenius-sphere optimizer constraint. For eligible Transformer matrices, it fixes matrix norms and update norms while leaving embeddings and n...
Post-polar Muon+ normalization
P0Score 0.68needs review
Changing eligible Muon matrix updates to apply one post-polar bidirectional normalization step should improve held-out decoder pretraining loss under matched tokens because it reduces row/column imbalance amplified by practical polar ite...
Evidence
Muon+ addresses a claimed post-polar imbalanced-update problem in Muon: practical polar/Newton-Schulz orthogonalization can amplify row and column imbalance in the update matrix. The proposed fix adds one normalization step after polar o...
Input-preconditioned Newton-Muon
P0Score 0.64needs review
Changing eligible decoder matrix updates from standard Muon to Newton-Muon right-preconditioned orthogonalized updates should improve held-out base-model loss under matched pretraining tokens because input-second-moment inverse precondit...
Evidence
Newton-Muon modifies Muon by right-preconditioning each eligible matrix gradient with a ridge-stabilized inverse estimate of the layer input second moment before taking the matrix sign or polar direction. The source reports faster target...
Neuron-wise normalized Muon
P0Score 0.62needs review
Changing eligible Muon matrix updates to NorMuon neuron-wise normalized orthogonalized updates should improve held-out decoder pretraining loss under matched tokens because row-wise adaptive second-moment scaling balances per-neuron upda...
Evidence
NorMuon combines Muon's matrix update orthogonalization with neuron-level adaptive learning rates. The source argues that Muon fixes update condition numbers but leaves high variance in per-neuron update norms, and that maintaining row-w...
Parallax covariance-probe attention
P0Score 0.62needs review
Changing causal softmax attention to Muon-trained Parallax attention should improve held-out base-model loss under matched tokens or matched measured FLOPs because the learned rho projector supplies a local-linear KV-covariance correctio...
Evidence
Parallax modifies attention from a local-constant softmax estimator toward a parameterized local-linear estimator. It adds a learned rho/R projector that probes KV covariance and contributes a correction branch to the standard attention ...
Variance-adaptive Muon momentum
P0Score 0.62needs review
Changing eligible Muon matrix updates to variance-adapt momentum before Newton-Schulz orthogonalization should improve held-out decoder pretraining loss under matched tokens because per-coordinate variance or noise-to-signal normalizatio...
Evidence
The source proposes Muon-NSR and Muon-VS, optimizer variants that normalize Muon momentum using variance or noise-to-signal information before Newton-Schulz orthogonalization. Reported decoder-only GPT-2 and LLaMA pretraining experiments...
Column-normalized Adam subspace updates
P0Score 0.62needs review
Changing eligible decoder matrix optimization to Conda column-normalized Adam should improve held-out base-model loss under matched pretraining tokens because projecting updates into an orthogonal subspace before column-wise second-momen...
Evidence
Conda modifies Adam for matrix parameters by projecting momentum into an orthogonal subspace and maintaining column-wise second moments from projected gradients. The source reports decoder-only LLaMA and GPT-2 pretraining gains over Adam...
OrScale layer-wise trust-ratio Muon
P0Score 0.62needs review
Changing eligible matrix-parameter Muon+Moonlight updates to include a dynamic per-layer trust ratio (real-update-direction Frobenius-norm denominator, coupled weight decay, r_l,0=1 calibration) should improve held-out decoder pretrainin...
Evidence
Proposes OrScale-LM, a LARS/LAMB-style dynamic per-layer trust ratio applied on top of Muon+Moonlight: r_l,t = ||W_l||_F / (||lambda*W_l + s_l*Q_l||_F + eps), where Q_l is the Newton-Schulz orthogonalized Muon direction, s_l is the Moonl...
Sophia diagonal-Hessian clipped optimizer
P0Score 0.62needs review
Changing the pretraining optimizer from AdamW/Muon to Sophia (gradient-EMA divided by clipped, periodically re-estimated diagonal-Hessian EMA) should improve held-out decoder base-model loss at matched training tokens or matched FLOPs be...
Evidence
Sophia is a second-order optimizer for LM pretraining that maintains an EMA of gradients (momentum) divided by an EMA of a light-weight diagonal Hessian estimate (Hutchinson or Gauss-Newton-Bartlett), re-estimated only every ~10 steps, f...
SOAP: Shampoo-Adam in Kronecker eigenbasis
P0Score 0.62needs review
Replacing AdamW (or the current Muon-eligible matrix optimizer) with SOAP -- Adam-style first/second-moment updates computed in the periodically-refreshed eigenbasis of Shampoo's Kronecker-factored (L=GG^T, R=G^T G) preconditioner -- sho...
Evidence
The paper shows Shampoo (with 1/2 power) is equivalent to running Adafactor in the eigenbasis of Shampoo's Kronecker-factored preconditioner, and proposes SOAP: maintain Shampoo's L=sum GG^T and R=sum G^T G accumulators per 2D layer, per...
Nora row-orthogonal optimizer
P0Score 0.61needs review
Changing eligible decoder matrix-parameter updates to Nora row-orthogonal momentum projection plus row-wise normalized updates should improve held-out base-model loss under matched pretraining tokens or matched measured FLOPs because it ...
Evidence
Nora is a matrix optimizer for autoregressive LLaMA-style pretraining that projects momentum row-wise onto the orthogonal complement of each weight row, row-normalizes the projected direction, and updates with a width-scaled learning rat...
Spectrum-preserving Pion optimizer
P0Score 0.58needs review
Changing eligible decoder matrix optimization from additive Muon or AdamW updates to Pion spectrum-preserving orthogonal equivalence updates should improve held-out base-model loss under matched pretraining tokens or matched measured FLO...
Evidence
Pion is an optimizer that updates weight matrices by orthogonal left/right transformations, preserving singular values during training. The source's final variant combines RMS-controlled scaling, Lie-algebra first- and second-order momen...
MONA: Muon Optimizer with Nesterov Acceleration for Scalable Language Model Training
P0Score 0.58needs review
Source claim to test: The Muon optimizer has recently offered a promising alternative to AdamW for large language model training, leveraging matrix orthogonalization to produce geometry-aware updates.
Evidence
The Muon optimizer has recently offered a promising alternative to AdamW for large language model training, leveraging matrix orthogonalization to produce geometry-aware updates. However, like all first-order methods, Muon can become tra...
Dynamic hyper-connections residual replacement
P0Score 0.58needs review
Changing decoder Transformer residual joins to dynamic hyper-connections with expansion rate 4 should improve held-out base-model loss under matched pretraining tokens because learned depth-connection weights can mix Pre-Norm-like long-r...
Evidence
Hyper-connections replace fixed residual joins with trainable static and dynamic depth-connection weights over expanded hidden streams. The source reports decoder LM pretraining experiments on dense OLMo-style models and OLMoE, with DHC ...
LITE flat-direction Muon
P0Score 0.58needs review
Changing eligible Muon matrix-block updates to LITE flat-direction damping and learning-rate amplification should improve held-out decoder pretraining loss at matched tokens or matched measured FLOPs because the optimizer increases progr...
Evidence
LITE modifies adaptive matrix optimizers such as Muon and SOAP by identifying sharp versus flat directions and increasing damping or learning-rate amplification in flat directions. The source reports decoder-only pretraining experiments ...
ScheduleFree+ optimizer
P0Score 0.58needs review
Changing scheduled AdamW/WSD training to ScheduleFree+ should improve held-out decoder pretraining loss under matched tokens because Polyak/adaptive schedule-free iterate averaging can avoid horizon-specific decay choices while stabilizi...
Evidence
ScheduleFree+ is a schedule-free, learning-rate-free optimizer recipe for LLM pretraining. It keeps separate gradient-evaluation and output iterate sequences, uses adaptive Polyak or inverse-gradient-norm step sizing, adds inner momentum...
Head-wise value RMSNorm
P0Score 0.58needs review
Changing causal attention to apply head-wise RMSNorm after value aggregation should improve held-out decoder pretraining loss under matched tokens because it reduces position-wise variance discrepancy that drives attention sinks and earl...
Evidence
The source argues that causal value aggregation creates position-wise variance discrepancy that is amplified by early FFN super neurons, producing attention sinks. It proposes head-wise RMSNorm after attention value aggregation while ret...
Coordinate-first Zeta whitening optimizer
P0Score 0.58needs review
Changing eligible matrix-parameter updates from plain Muon-style spectral whitening to Zeta's coordinate-whitening-then-spectral-whitening update should improve held-out decoder pretraining loss under matched tokens or matched measured F...
Evidence
Zeta is a matrix-aware optimizer that first whitens coordinate-wise scale heterogeneity in momentum matrices and then applies Muon-like Newton-Schulz spectral whitening. The source argues that coordinate whitening improves the conditioni...
Hashed n-gram conditional memory
P0Score 0.58needs review
Changing a decoder MoE by reallocating part of the sparse expert parameter budget to hashed n-gram Engram conditional memory should improve held-out base-model loss under matched tokens and active FLOPs because local static dependencies ...
Evidence
Engram adds a large hashed n-gram embedding memory to a decoder MoE as a second sparsity axis. Local compressed token n-grams deterministically address sparse memory rows, and context-aware gating/fusion injects the retrieved representat...
MERIT max-norm element-wise trust ratio optimizer
P0Score 0.58needs review
Changing the matrix-parameter optimizer from AdamW/LAMB to MERIT's max-norm plus element-wise trust-ratio update should improve held-out decoder pretraining loss at matched tokens and batch size because directly bounding the max attentio...
Evidence
Proposes MERIT, an Adam/LAMB-family optimizer for large-batch causal-LM pretraining. It replaces LAMB's l2-norm layer-wise trust ratio with a max-norm-based trust ratio (to directly bound max attention logit growth in attention Q/K weigh...
Gated associative successor memory
P0Score 0.58needs review
Changing causal dense attention to a gated associative successor-memory path should improve held-out decoder pretraining loss under matched tokens because bounded content-addressed retrieval can recover useful long-context successor evid...
Evidence
PCAF replaces dense causal attention with a local parametric path plus an in-context associative successor cache. It writes local causal records into hash buckets, retrieves a bounded candidate set for each query, converts retrieved reco...
Position-adaptive recurrent decay spectra
P0Score 0.57needs review
Changing diagonal recurrent decoder layers to PoST geometric log-decay spectra with position-adaptive scaling should improve held-out base-model loss under matched tokens because better-conditioned decay channels preserve long-range memo...
Evidence
PoST modifies diagonal linear recurrent layers by enforcing geometrically structured log-decay spectra and scaling those spectra by position so channels cover the effective dependency range at each timestep. The source reports equal-hype...
Changing decoder causal attention to MEA with separate cross-head linear combinations over K and V plus head-level GroupNorm should improve held-out base-model loss under matched pretraining tokens because explicit inter-head communicati...
Evidence
Multi-head Explicit Attention adds learnable cross-head linear combinations for key and value vectors plus head-level GroupNorm/RMSNorm. The supplied evidence reports decoder LM from-scratch pretraining comparisons at a LLaMA3.2-1B-style...
Global loss gate did not pass: candidate 3.170267 vs control 3.279997 (delta -0.109730). No 3000-step pair was launched.
Recovery next
Do not modify the candidate diff (016830f35cb93c95f9c16395d88c0a2c6b0e3702) ? it is not implicated, since mea_attention=false in this run's resolved_configuration and the diff touches no file in the failing call chain. Instead, escalate ...
State-prediction token separation
P0Score 0.54needs review
Changing the decoder block/input format to State-Prediction Separation, where each real token is paired with a predict token that carries next-token loss under an SPS attention mask, should improve held-out base-model loss at matched tra...
Evidence
State-Prediction Separation interleaves each input token with a predict token sharing the same RoPE position, computes next-token loss only on predict positions, and uses a custom causal attention pattern so input tokens maintain state w...
Microbatch bias-corrected preconditioning
P0Score 0.54needs review
Changing AdamW/Sophia/Shampoo preconditioned updates to cross-fitted numerator/preconditioner estimates plus variance-corrected inverse preconditioning should improve held-out decoder pretraining loss under matched tokens or matched meas...
Evidence
The source argues that stochastic preconditioned optimizer updates are biased because the gradient and preconditioner are estimated from the same minibatch and because inverting a noisy preconditioner is nonlinear. It proposes cross-fitt...
Native hierarchical sparse attention
P0Score 0.52needs review
Changing decoder causal attention from full attention to NSA hierarchical trainable sparse attention should improve held-out base-model loss or quality-throughput tradeoff under matched pretraining tokens because compressed global contex...
Evidence
NSA replaces full attention with a trainable hierarchical sparse pattern that combines compressed global tokens, blockwise selected KV blocks, and a sliding local window, paired with hardware-aligned Triton kernels. The source reports a ...
Hierarchical landmark sparse attention
P0Score 0.52needs review
Changing decoder causal attention from full attention to end-to-end learned hierarchical landmark sparse attention should improve held-out base-model loss or equal-compute long-context quality under matched tokens or measured FLOPs becau...
Evidence
HiLS attention replaces dense causal attention with chunk-wise sparse retrieval learned through the language-modeling loss. Each chunk has a learnable landmark-derived summary; queries score chunk summaries, retrieve top-k chunks, attend...
Column-normalized last-layer momentum SGD
P0Score 0.49needs review
Changing eligible decoder matrix optimization from Adam/Muon-style updates to SCALE column-normalized SGD with last-layer-only momentum should improve held-out base-model loss or memory-adjusted training efficiency under matched tokens o...
Evidence
The source proposes SCALE, a minimalist memory-efficient optimizer for LLM pretraining. Matrix parameters use column-wise gradient normalization instead of Adam moments, first-order momentum is applied only to the output layer, and vecto...
Complete-muE MoE transfer
P0Score 0.49needs review
Changing MoE optimizer and initialization scaling to Complete-muE transfer rules should improve held-out decoder pretraining loss under matched tokens or matched measured FLOPs because dense-calibrated hyperparameters transfer more relia...
Evidence
Complete-muE proposes a compositional hyperparameter-transfer rule for dense FFN, Dense MoE, and sparse MoE Transformer blocks. It combines active-width muP, normalized router scale, and expert-side SDE reasoning so dense-tuned initializ...
muP-scaled matrix optimizer transfer
P0Score 0.49needs review
Changing matrix-preconditioned optimizer hyperparameters to muP-scaled learning rates plus 1/width independent weight decay should improve held-out decoder pretraining loss at matched tokens or matched measured FLOPs because optimizer op...
Evidence
The source argues that matrix-preconditioned optimizers only retain apparent speedups over AdamW when their learning rate and independent weight decay are transferred with scale-aware rules. It reports that muP-derived learning-rate scal...
EMO: Pretraining Mixture of Experts for Emergent Modularity
P0Score 0.46needs review
Source claim to test: Large language models are typically deployed as monolithic systems, requiring the full model even when applications need only a narrow subset of capabilities, e.g., code, math, or domain-specific knowledge.
Evidence
Large language models are typically deployed as monolithic systems, requiring the full model even when applications need only a narrow subset of capabilities, e.g., code, math, or domain-specific knowledge. Mixture-of-Experts (MoEs) seem...
Implementation
Verification and audit must pass before Smoke / local
5
Path-integral additive GRAPE-AP attention bias
P12Score 0.78implementation blocked
Add the exact paper GRAPE-AP path-integral attention-logit bias while retaining the current Titan rotary bilinear attention term. For each attention head, form positional probes from token-local features with a learned linear projection ...
Evidence
The local 1B GRAPE-AP candidate is feasible with a small attention-path change plus focused tests. The exact mechanism should live in the existing Transformer and TransformerMoE attention modules, use flex attention score_mod rather than...
SMOKE failedCurrent scientific review no longer approves implementation
Add only Forgetting Attention to each causal attention layer while retaining the Titan baseline RoPE, QK norms, gated-attention output, global and sliding-window masks, and MLP. For each token and head, compute the source scalar data-dep...
Evidence
The local 1B Titan implementation is feasible without a new model wrapper. The smallest faithful change is an optional per-head forget-gate projection inside the existing dense and MoE Attention classes, feeding a float32 cumulative log-...
Recovery completed (not a scientific result)Scientific review evidence changed after approval
Changing the last third of decoder attention layers to layer-specific Bank of Values token-id value lookups should improve held-out base-model loss under matched pretraining tokens because deep-layer value vectors benefit from preserving...
Evidence
Bank of Values replaces standard residual-stream value projections in the last third of decoder attention layers with layer-specific token-id lookup tables scaled by a learnable coefficient. The source argues and ablates that deep-layer ...
LOCAL completedImplementation action could not be claimed
Training loss 2.221 at step 3000
X-shaped variable layer widths
P0Score 0.74approved for implementation
Changing decoder-only Transformer blocks from uniform hidden width to an x-shaped layerwise width schedule with wider early and late layers, narrower middle layers, and parameter-free residual coordinate copying should improve held-out b...
Evidence
The source proposes a decoder-only Transformer with nonuniform hidden width across depth: early and late layers are wider, middle layers are narrowed, and inactive residual-stream coordinates bypass narrow layers through parameter-free c...
Queued for implementation - not finished
Current: Waiting for the implementation workerNext: Implementation, host verification, and independent audit; then moves automatically to Smoke / local test.
Changing each decoder attention block to apply a causal residual depthwise k=3 convolution to the projected Q, K, and V tensors before attention should improve held-out base-model loss under matched pretraining tokens because local neigh...
Evidence
The source studies lightweight causal depthwise Conv1D modules inside decoder Transformer blocks. Its placement ablation over 17 locations finds the best reported loss/perplexity when convolution is applied to the projected Q, K, and V r...
Implementation repair
Implementation audit requested repair: Trusted host verification is not clean for the current action: `host_verification.verified` is false because `mypy` failed. Even with preexisting errors reported, this audit input does not provide a...
Smoke / local test
Ready, queued, running, or replicating
0
No cards here.
Local result / failure
Promising, rejected, inconclusive, or failed
13
Two-point dynamic ShortConv in attention and residual writes
P10Score 0.78local rejected
Add identity-initialized causal dynamic depthwise short convolutions at two architectural locations in each decoder block: directly after the key and value projections, and on the attention-output and MLP-output residual branches immedia...
Evidence
Implementation audit requested repair: Current scientific review is identifiable: scientific_review.review_id=review_9494e7cbae2d4b03 and scientific_review_sha256=369e02f92e1428fbd5b48b0eaa20c258eef8ae35be5e1d5cd3cfe8a9d97033ea.; Host ve...
LOCAL completedCompleted matched seed-44 3000-step ShortConv candidate shortconv-v1-full-pp2dp4-seed44-r1-0717 versus disabled control shortconv-v1-full-control-pp2dp4-seed44-r1-0717. Audited step-3000 training loss was 3.1805 versus 1.9188 (delta +1.2...
Apply the official Thinking Machines unit-Stiefel Manifold Muon update to one audited class of eligible 2D hidden weights. Transpose W and G iff W.shape[0] < W.shape[1]; at eta=0 initialize W with msign(W); initialize Lambda=-0.25*(W.T@G...
Evidence
The request is locally feasible as a narrow optimizer-only change. The target tree already has the needed Muon owner-rank P2P gather/scatter, replica broadcast, parameter grouping, search_param_name matching, optimizer metrics, and MoE/M...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.054529
Adding StableMask's parameter-free, head-wise gamma=0.5 future-position pseudo logits before softmax and zeroing future probabilities after softmax will let real-token attention mass fall below one, reduce attention sinks, encode absolut...
Evidence
The primary paper evaluates 71M through 1.4B causal decoder LMs and reports gains across datasets and positional encodings. In its 1.4B OpenLLaMA/RoPE Pile experiment, perplexity is 15.4 to 15.0 at 5B tokens and 10.7 to 10.4 at 25B token...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.045636
For each attention layer n >= 2, replacing only its value tensor V_n with 0.5 * V_1 + 0.5 * V_n, while retaining that layer's own Q, K, attention matrix, output projection, and all ordinary hidden-state residuals, will preserve early tok...
Evidence
The v5 primary paper tests Llama-like pre-norm, SwiGLU, RoPE decoder LMs on SlimPajama from 82M to 468M parameters at 20B tokens and a 1.6B model at 200B tokens. It reports equivalent validation loss with 16.11% fewer parameters or 20.3%...
Current blocker
Identity ResFormer local result needs an architecture-parity evaluator rerun
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.000470
Global loss gate did not pass: candidate 3.277053 vs control 3.276583 (delta +0.000470). No 3000-step pair was launched.
Cautious momentum update masking
P0Score 0.82local rejectedSmoke passed
Changing momentum-based optimizer updates to an elementwise cautious variant that applies only update coordinates aligned with the current gradient should improve held-out decoder pretraining loss at matched tokens because it suppresses ...
Evidence
The source proposes a cautious variant of momentum-based optimizers such as AdamW and Lion: suppress update coordinates when the proposed momentum update and current gradient are not aligned. It claims this preserves useful stability pro...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.718270
Global loss gate did not pass: candidate 4.025300 vs control 3.307000 (delta +0.718300). No 3000-step pair was launched.
Horizon-free inverse-sqrt LR schedule
P0Score 0.82local rejectedSmoke passed
Changing the pretraining learning-rate schedule from fixed-horizon cosine/WSD to a warmup plus shifted inverse-square-root base with final linear decay should improve held-out base-model loss at matched tokens and optimizer steps because...
Evidence
WSqD replaces WSD's constant stable learning-rate phase with a shifted inverse-square-root base schedule followed by a final linear cooldown. The claimed benefit is that the base schedule is horizon-independent, so the peak learning rate...
LOCAL completedMatched step-3000 evaluation found no benefit: composite_v2 1.818244 versus 1.814486 control (candidate +0.003758 worse; lower is better), all four components favored control, and the result failed the predeclared requirement to beat the...
Changing matrix-parameter optimization from AdamW or unscaled Muon to weight-decayed, update-RMS-matched Muon should improve held-out decoder pretraining loss under matched tokens or matched measured FLOPs because orthogonalized matrix u...
Evidence
The source claims Muon scales to large decoder-only LLM pretraining when two recipe changes are added: AdamW-style weight decay to control weight and activation RMS growth, and per-matrix update scaling/RMS matching so Muon updates resem...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.040382
Changing uniform per-layer MLP intermediate width to a cosine front-loaded taper at fixed total parameters and active FLOPs should improve held-out decoder pretraining loss under matched tokens because earlier MLPs write more novel resid...
Evidence
The source proposes Tapered Language Models: replace a constant MLP intermediate dimension with a monotone per-layer width schedule under a fixed total parameter budget. The reported best default is a cosine taper with start/end MLP widt...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.024637
Changing MoE load-balancing loss from micro-batch-local frequency estimates to global-batch frequency estimates should improve held-out decoder pretraining loss at matched tokens because it relaxes per-sequence uniform routing pressure a...
Evidence
The source argues that standard MoE load-balancing loss is often computed within tiny micro-batches, effectively forcing each sequence to spread tokens uniformly across experts and suppressing specialization. It proposes computing the ex...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.003253
Changing optimizer assignment so only VO attention weights and FFN matrices use Muon while other parameters retain the baseline optimizer should improve held-out decoder pretraining loss at matched tokens because Muon's orthogonalized ma...
Evidence
The source argues that Muon's advantage over Adam in LLM pretraining comes primarily from transformer associative-memory parameters: attention value/output projections and FFN matrices. It reports FineWeb NanoGPT ablations that apply Muo...
Current blocker
Local result is blocked by mismatched or invalid evidence
LOCAL completedLocal result is blocked by mismatched or invalid evidence
Changing fixed RoPE frequencies to shared learnable per-frequency log scalars should improve held-out base-model loss at matched pretraining tokens and approximately matched FLOPs because the model can preserve useful high-frequency posi...
Evidence
LeRoPE replaces fixed RoPE frequency bands with shared learned log-space scalars alpha_m, initialized at zero so the model starts exactly as standard RoPE. The source reports decoder-only LM pretraining ladders where LeRoPE beats standar...
Current blocker
Local result is blocked by mismatched or invalid evidence
LOCAL completedPromotion gate failed after the fresh matched 4.27B eight-GPU 300-step prefix: candidate loss improved by 0.0117 nats, but steady throughput regressed 1.63 percent, peak memory increased by 9.54 GiB, only one seed was run, no evaluator/c...
Changing AdamW training to add PACE's clipped per-coordinate pullback from live weights toward the EMA iterate should improve held-out decoder pretraining loss under matched tokens because the returned averaged model is explicitly optimi...
Evidence
PACE is a lightweight AdamW wrapper for iterate-averaged language models. It keeps an EMA of the weights and adds a clipped, per-coordinate pullback from the live weights toward the EMA, with gain scaled by the Adam second-moment precond...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+1.367324
Changing the pretraining optimizer from scheduled AdamW or Muon to AMUSE, which combines Muon matrix updates with schedule-free iterate averaging and a time-varying gradient-evaluation interpolation, should improve held-out base-model lo...
Evidence
AMUSE modifies Muon optimization by evaluating gradients at an interpolation between the fast Muon sequence and an averaged sequence, with a time-varying beta_t that starts closer to the fast trajectory and gradually shifts toward the st...
Recovery completed (not a scientific result)Matched 300-step healthy-DP4 screen did not improve training loss: delta=+0.615464