English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Neural Thickets: RandOpt Finds Diverse Task Experts Dense Around Pretrained Weights

Forum topic · ✨步子哥 · 2026-03-19

Summary

A detailed Chinese forum post examines the 'Neural Thickets' phenomenon reported by MIT CSAIL researchers (Yulu Gan, Phillip Isola, et al.): in large pretrained models, high-performing task-specific 'experts' are densely clustered near pretrained weights, challenging the long-standing assumption that good solutions are extremely sparse in weight space. The post analyzes RandOpt, a gradient-free algorithm that samples N Gaussian weight perturbations around pretrained weights, evaluates them on a small validation set, keeps the top-K elites, and ensembles their predictions via majority voting or probability averaging. Key findings: expert density scales superlinearly with model size (roughly a power law with exponent ~1.5–2.0), with an apparent emergence threshold near 1.5B parameters; RandOpt matches or exceeds PPO/GRPO on GSM8K and Countdown with O(1) iteration complexity and full parallelism (e.g., 87.1% on Countdown in 3.2 minutes on 200 GH200 GPUs); and vision-language models show the largest gains (GQA: 56.6% → 69.0%). The article covers implementation details, hyperparameters (σ≈0.005, N=5000, K=50), distillation for inference compression, applications in education, finance, and healthcare, theoretical implications for optimization and interpretability, and societal considerations including democratization, energy costs, safety, fairness, and regulation. Open-source code is available at https://github.com/sunrainyq/RandOpt.

Neural Thickets: RandOpt Algorithm — Technical Innovation, Theoretical Breakthroughs, and Social Impact

This post is a structured English summary of an extensive Chinese forum article about the "Neural Thickets" phenomenon and the RandOpt algorithm, based on a paper by MIT CSAIL researchers (Yulu Gan, Phillip Isola, et al.): *Neural Thickets: Diverse Task Experts Are Dense Around Pretrained Weights*.

Key points

1. The Neural Thickets phenomenon

  • Dense experts around pretrained weights: Large-scale pretrained models do not have sparse isolated solutions; instead, many task-specific experts cluster densely in the neighborhood of pretrained weights. This contradicts the classic assumption (Schmidhuber et al., 2001) that good solutions are extremely sparse in weight space.
  • Scale dependence: Experiments on Qwen2.5 models (0.5B–32B parameters) show a strong positive correlation between model scale and expert density. RandOpt's performance exhibits a burst around ~1.5B parameters; small or untrained models show almost no benefit from random perturbation.
  • Density scaling: Effective expert density ρ reportedly follows a power law ρ ∝ N^α with α ≈ 1.5–2.0 — a superlinear scaling effect.
  • Quantitative example: For a 7B model with noise σ = 0.005, over 15% of randomly sampled perturbed models reportedly reach >75% accuracy on GSM8K; this fraction is near zero for non-pretrained models.
  • Mechanism: Massive multi-task pretraining "pre-structures" the parameter space so downstream solutions are densely reachable. Single-task pretrained models only allow improvement along narrow directions; multi-task pretrained models show dense, bush-like expert distribution.
  • 2. RandOpt algorithm

    Two-stage architecture:

  • *Training (search)*: sample N Gaussian noise vectors ε ~ N(0, I); instantiate perturbations θ_i = θ + σ·ε_i; evaluate in parallel on a small validation set (~200 examples); keep top-K elites. No backpropagation, no iterative updates — O(1) iteration complexity, fully parallel.
  • *Inference (ensemble)*: majority voting (classification) or probability averaging (generation) over the K elites, with natural uncertainty quantification via prediction agreement.
  • Key hyperparameters:

  • Noise scale σ ≈ 0.005 (robust plateau over roughly [0.001, 0.02])
  • Population N = 5000, elites K = 50 (typical; 100:1 ratio)
  • Memory efficiency via PRNG seed management: each candidate stored as a seed, noise reconstructed on the fly — O(K) storage instead of O(N·|θ|)
  • Headline results:

    | Method | GSM8K | Countdown | |---|---|---| | PPO | 78.0% | baseline | | GRPO | 83.5% | baseline | | RandOpt (random, K=50) | 82.3% | 87.1% | | RandOpt + distillation | 84.3% | — |

  • RandOpt on OLMo-3-7B-Instruct (N=2000, K=50) completed in 3.2 minutes on 200 NVIDIA GH200 GPUs.
  • Vision-language models show the largest gains: Qwen2.5-VL-Instruct-3B improved on GQA from 56.6% → 69.0% (+12.4 points).
  • RandOpt works best on high-quality, multi-task pretrained models ≥1.5B parameters; it degrades sharply on weak or domain-mismatched pretrained models.
  • Practical notes from the article:

  • Freeze visual encoders for VLMs; perturb language-model weights only.
  • Distillation compresses the K-model ensemble to one model retaining ~90% of ensemble performance at ~2% of RandOpt training cost.
  • RandOpt is complementary to PPO/GRPO: it can serve as initialization or exploration; it also pairs with SFT in explore–distill–re-explore loops.
  • 3. Applications and benefits

  • Validated tasks: math reasoning (GSM8K, Countdown, MATH-500), code generation (MBPP pass@1 gains of 10–15%), creative writing, chemistry (USPTO reaction prediction).
  • Development speed: prototyping drops from days to ~30 minutes; production training from hours/days to minutes.
  • Industry scenarios: education (teacher-driven customization), finance (rapid compliance-driven adaptation, auditability via expert agreement), healthcare (specialist adaptation with mandatory human oversight), enterprise code assistants.
  • 4. Theoretical and societal discussion

  • Optimization theory: gradient-free random search can match gradient methods in structured loss landscapes, suggesting new frameworks around effective dimensionality, landscape structure, and "neighborhood-optimum is enough" satisficing.
  • Interpretability: perturbation-sensitivity analysis and expert clustering offer tools for mapping parameter-space geometry to function; implicit modularity in dense models echoes explicit MoE architectures.
  • Democratization: no-gradient, minutes-long customization lowers barriers for non-ML experts and smaller institutions, though dependence on large pretrained models remains a constraint.
  • Environment: training efficiency gains vs. K-fold inference overhead; distillation mitigates ongoing costs; a full lifecycle carbon analysis is advised.
  • Safety/governance: stochastic behavior challenges deterministic certification; larger attack surface (validation-set poisoning, ensemble-consistency attacks); EU AI Act compliance requires seed provenance logging, statistical safety certification, and layered transparency.
  • Resources

  • Open-source code: https://github.com/sunrainyq/RandOpt
  • Paper: *Neural Thickets: Diverse Task Experts Are Dense Around Pretrained Weights* (MIT CSAIL)

Tags

#randopt#neural-thickets#pretrained-models#random-search#model-ensembling#mit-csail#llm-post-training#scaling-laws

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/177168915