Neural Thickets: The Experiment That Could Obsolete Your Post-Training Pipeline This Week
The Claim
RandOpt, from Phillip Isola's group at MIT, proposes a deceptively simple technique: take a pretrained model checkpoint, add calibrated Gaussian noise to its weights, generate N variants, and ensemble their predictions. The claim is that this matches or exceeds GRPO and PPO across five task categories: reasoning, coding, writing, chemistry, and VLM tasks.
The theoretical explanation — that large pretrained models sit in "neural thickets," local weight-space neighborhoods densely populated with task specialists — is elegant. If true, the traditional narrative ("you need reward models and RL loops to unlock latent capability") is fundamentally wrong at scale. The capability is already there, distributed across nearby weight configurations. You just need to sample and aggregate.
What's Missing
This result has not been independently validated. We lack critical details:
- Noise scale calibration — what σ range relative to weight magnitude?
- Ensemble size — how many variants, and what's the inference cost multiplier?
- Scale dependence — does this hold at 7B, 70B, and 400B+?
- Ablation details — which of the five task categories show the largest/smallest gains?
The claim spans five task categories, which is suspiciously broad for a single trick. If noise + ensembling truly matched RL post-training everywhere, someone would have noticed this years ago. The most likely reality is that it works well on certain task types (probably reasoning and coding, where ensembling has strong theoretical backing) and less well on others (alignment-sensitive tasks like safety).
Why This Still Warrants Immediate Experimentation
The expected value of a 2-day reproduction attempt is enormous: either you find a massive simplification of your pipeline, or you produce a well-characterized negative result that saves you from hype-driven pivots later.
The experiment is cheap and well-defined:
- Take a pretrained checkpoint you control
- Add Gaussian noise at multiple scales (σ = 0.001 to 0.1 × weight std)
- Generate 5–10 variants
- Ensemble predictions (simple averaging or majority vote)
- Compare against your best post-trained model on your eval suite
If the result is within striking distance of your RLHF/DPO output, you've found a massive infrastructure simplification. If it falls flat, you've quantified the actual incremental value of your RL post-training pipeline — which most teams have never measured against this specific baseline.
A Supporting Data Point
A separate Stanford result on generic data replay reinforces the theme that post-training recipes may be leaving value on the table. Simply mixing 10–20% pretraining-distribution data into fine-tuning yields 1.87× improvement during fine-tuning and 2.06× during mid-training, with +4.5% on agentic web navigation and +2% on Basque QA. This is a near-zero-cost change to your training recipe that most teams haven't tried.
Together, Neural Thickets and generic data replay point to the same meta-insight: the pretrained model's weight space and data distribution contain far more latent value than current post-training methods extract. The question is whether your pipeline is designed to access it.
What to do
Run the Neural Thickets reproduction experiment on your best pretrained checkpoint this week — noise at 5 scales, 5-10 variants, ensemble, compare against post-trained model on your eval suite
Add 10-20% pretraining-distribution data to your next fine-tuning run by end of sprint
If Neural Thickets reproduces, design a systematic study of noise scale vs. ensemble size vs. task type to map the Pareto frontier for your use cases