{
 "artifacts": null,
 "category": "training",
 "description": "Turn constrained-flow generation efficiency into an online diagnostic and controller for neural sampling. When the target ensemble changes faster than the flow can track or becomes internally complex, automatically shorten the training window, increase flow updates, or fall back to local MCMC instead of silently accepting biased or highly correlated samples.",
 "formulas_latex": [
  "$$\\eta_i=\\frac{\\mathrm{ESS}_i}{M}=\\frac{(\\sum_{j=1}^{M}w_j)^2}{M\\sum_{j=1}^{M}w_j^2},\\qquad w_j=\\frac{p_0(x_j)\\mathbf{1}[\\ell(x_j)\u003e\\lambda_i]}{q_i(x_j)}.$$",
  "$$D_i^{\\mathrm{sym}}=\\frac{1}{2}\\mathbb{E}_{x\\sim q_i}\\left[\\log\\frac{q_i(x)}{q_{i-1}(x)}\\right]+\\frac{1}{2}\\mathbb{E}_{x\\sim q_{i-1}}\\left[\\log\\frac{q_{i-1}(x)}{q_i(x)}\\right].$$",
  "$$K_{i+1}=\\begin{cases}\\max(K_{\\min},\\lfloor K_i/2\\rfloor),\u0026D_i^{\\mathrm{sym}}\u003eD_{\\max},\\\\\\min(K_{\\max},K_i+\\Delta K),\u0026D_i^{\\mathrm{sym}}\u003cD_{\\mathrm{low}}\\ \\land\\ \\eta_i\u003e\\eta_{\\mathrm{high}},\\\\K_i,\u0026\\text{otherwise},\\end{cases}$$",
  "$$R_{i+1}=R_i\\left(1+c[\\eta_{\\min}-\\eta_i]_+\\right),\\qquad [z]_+=\\max(z,0).$$"
 ],
 "id": 3134,
 "implementation": "1. Integration point: place this controller around the conditional-flow sampler used for diffusion sampling, neural energy models, Bayesian neural networks, or world-model trajectory distributions. Store each proposal's flow log density, prior log density, constraint result, and score. 2. Pseudocode: after every nested level, compute normalized ESS from importance weights; evaluate both $q_i(x)$ and $q_{i-1}(x)$ on a small proposal buffer to estimate symmetric KL drift; if $D_i^{\\mathrm{sym}}\u003eD_{\\max}$, discard old examples, halve the FIFO window $K$, and perform additional flow updates; if $\\eta_i\u003c\\eta_{\\min}$ while drift is small, increase $R_i$ and apply 5 to 20 local HMC or Langevin correction steps; if efficiency remains high for several levels, enlarge $K$ and reduce updates. Flag a level when ESS is below 1% of proposals. 3. The paper supplies the mechanism that efficiency varies non-monotonically along annealing and becomes poor in internally complex liquid-like ensembles. Thresholds, window limits, and fallback lengths must be estimated in a pilot run. 4. First experiment: use a 16-dimensional mixture of eight Gaussians with controllable separation and threshold drift. Compare fixed-window flow sampling with the adaptive controller. Prediction: under rapidly changing targets, adaptation keeps $\\eta_i\\ge0.1$ by shortening $K$, whereas fixed-window training falls below $0.02$. In a dense multimodal interval, efficiency should show a reproducible local minimum; the controller should increase compute there while preserving evidence accuracy. Verify that log-evidence error remains stable when the fixed-window baseline suffers ESS collapse.",
 "math_summary": "Let $q_i(x)=q_\\theta(x\\mid\\lambda_i)$ be the current proposal and $\\pi_i$ the constrained target. The normalized importance-weight effective sample size is $\\eta_i=\\mathrm{ESS}_i/M$, where $M$ is the number of proposals. A target-drift proxy is the symmetric KL divergence between consecutive flow distributions, estimated from samples as $D_i^{\\mathrm{sym}}=[D_{\\mathrm{KL}}(q_i\\|q_{i-1})+D_{\\mathrm{KL}}(q_{i-1}\\|q_i)]/2$. Low $\\eta_i$ with low drift indicates poor internal mode coverage, while high drift indicates stale training data. The controller adapts FIFO window length $K_i$, gradient-update count $R_i$, and optional local-MCMC correction using thresholds $\\eta_{\\min}$ and $D_{\\max}$.",
 "math_tags": [
  "probability",
  "statistics",
  "information-theory",
  "dynamical-systems",
  "optimization"
 ],
 "ml_areas": [
  "diffusion-sampling",
  "training-dynamics",
  "scheduler",
  "world-model"
 ],
 "paper": {
  "arxiv_id": "2609.03193",
  "arxiv_url": "https://arxiv.org/abs/2609.03193",
  "summary_what_math_gives_to_ml": "The paper offers a constructive replacement for expensive constrained MCMC in nested sampling: a single normalizing flow conditioned on the current likelihood or energy bound is trained from a sliding window of recent live points, then used for parallel importance-weighted proposals and rejection resampling. Its transferable asset is self-consistent amortized sampling of changing constrained ensembles without requiring a pre-existing training set or structured prior. For neural networks, the strongest applications are accelerating exploration of Bayesian neural-network posteriors, neural energy landscapes, diffusion latents, or world-model state distributions while monitoring flow efficiency as a quantitative diagnostic of multimodality and target drift.",
  "title": "Generative Nested Sampling of Atomistic Thermodynamic Landscapes",
  "year": "2026"
 },
 "ratings": {
  "difficulty": 5,
  "novelty": 7,
  "usefulness": 7
 },
 "solves": [
  "stability",
  "speedup",
  "sample-efficiency"
 ],
 "title": "Flow-Efficiency Drift Scheduler",
 "url": "https://synthcore.org/idea/3134/flow-efficiency-drift-scheduler",
 "verification": {
  "peer_reviewed": false,
  "status": "unverified",
  "status_label": "Unverified",
  "verdict_source": "deterministic test code (paired-seed permutation statistics)",
  "verification_axes": {
   "benchmark_mechanism": {
    "confirmed": null,
    "tested": false
   },
   "practical_benchmark": {
    "beats_baseline": null,
    "tested": false
   },
   "toy_mechanism_gate": {
    "confirmed": null,
    "tested": false
   }
  }
 }
}
