{
 "artifacts": [
  {
   "name": "bench_report.json",
   "url": "https://synthcore.org/code/1065/bench_report.json"
  },
  {
   "name": "gm_rollout_experiment.py",
   "url": "https://synthcore.org/code/1065/gm_rollout_experiment.py"
  },
  {
   "name": "report.md",
   "url": "https://synthcore.org/code/1065/report.md"
  },
  {
   "name": "report_bench_2026-09-01T234452.md",
   "url": "https://synthcore.org/code/1065/report_bench_2026-09-01T234452.md"
  },
  {
   "name": "results.json",
   "url": "https://synthcore.org/code/1065/results.json"
  },
  {
   "name": "stage2_bench.py",
   "url": "https://synthcore.org/code/1065/stage2_bench.py"
  }
 ],
 "category": "dynamics",
 "description": "Replace single-Gaussian uncertainty propagation in a neural state-space or world model with a finite mixture of Gaussian latent states. Each component is propagated through the learned nonlinear dynamics, and components are merged or pruned only when their Wasserstein discrepancy is below a prescribed tolerance, preserving multimodal futures while keeping computation bounded.",
 "download_zip": "https://synthcore.org/download/1065",
 "formulas_latex": [
  "$$P=\\sum_{i=1}^{m}w_i\\mathcal{N}(\\mu_i,\\Sigma_i),\\qquad W_\\rho(P,Q)=\\left(\\inf_{\\gamma\\in\\Gamma(P,Q)}\\mathbb{E}_{(x,y)\\sim\\gamma}[\\|x-y\\|^\\rho]\\right)^{1/\\rho}.$$",
  "$$\\mu_{t+1}^{ij}=f_\\theta(\\mu_t^i,a_t)+b_j,\\qquad \\Sigma_{t+1}^{ij}=J_i\\Sigma_t^iJ_i^\\top+Q_j,\\qquad w_{t+1}^{ij}=w_t^i\\pi_j.$$",
  "$$\\Pr(c^\\top z\\le r)=\\sum_iw_i\\Phi\\left(\\frac{r-c^\\top\\mu_i}{\\sqrt{c^\\top\\Sigma_i c}}\\right).$$",
  "$$\\mathbb{E}[z^\\top Rz]=\\sum_iw_i\\left(\\mu_i^\\top R\\mu_i+\\operatorname{tr}(R\\Sigma_i)\\right),\\qquad W_2(P,\\widehat{P})\\le\\varepsilon_W.$$"
 ],
 "id": 2821,
 "implementation": "1. Integration point: attach a probabilistic transition head to a compact neural state-space model. The head predicts a deterministic mean transition f_theta(z,a), its Jacobian J, and a fixed or learned bank of disturbance modes (pi_j,b_j,Q_j). During planning or inference, maintain tuples (w_i,mu_i,Sigma_i) rather than one latent mean and covariance. 2. Pseudocode: initialize components from the encoder posterior; at each horizon step, for every component i and disturbance mode j, compute mu' = f_theta(mu_i,a_t)+b_j, Sigma' = J_i Sigma_i J_i^T+Q_j, and w' = w_i pi_j; normalize weights; then merge nearby components until the estimated Wasserstein error budget reaches epsilon_W. Evaluate expected rewards and affine chance constraints analytically. 3. Computed versus estimated: mixture moments, quadratic costs, and affine constraint probabilities are analytic; J is obtained by autodiff; exact Wasserstein distance for mixtures is expensive, so use a Sinkhorn transport estimate between components and validate it with Monte Carlo samples. 4. First cheap experiment: train a neural model on a two-dimensional nonlinear oscillator with two disturbance modes and compare single-Gaussian, particle, and eight-component-mixture rollouts for 20 steps. Sweep epsilon_W. The predicted signature is preserved bimodality for the mixture, calibrated chance probabilities, and a sharp increase in rollout Wasserstein error when epsilon_W becomes large enough to merge distinct modes. Test whether the empirical error stays within 20 percent of the estimated Wasserstein budget before that transition.",
 "math_summary": "A Gaussian mixture is represented as P = sum_i w_i N(mu_i,Sigma_i), where w_i are nonnegative weights summing to one, mu_i is the mean of component i, and Sigma_i is its positive-definite covariance. Approximation quality is measured by the Wasserstein distance W_rho(P,Q) = (inf_gamma E[||x-y||^rho])^(1/rho), where gamma ranges over couplings with marginals P and Q. For a learned transition z_(t+1) = f_theta(z_t,a_t) + epsilon_t, propagate component i and disturbance mode j using mu_(t+1)^(ij) = f_theta(mu_t^i,a_t) + b_j and Sigma_(t+1)^(ij) = J_i Sigma_t^i J_i^T + Q_j, where J_i is the Jacobian of f_theta at mu_t^i, and (b_j,Q_j,pi_j) describe disturbance mode j. The new weight is w_(t+1)^(ij) = w_t^i pi_j. For an affine constraint c^T z \u003c= r, the mixture probability is the weighted sum of Gaussian cumulative distribution functions. Quadratic costs have an exact mixture expectation.",
 "math_tags": [
  "probability",
  "optimal-transport",
  "stochastic-processes",
  "statistics",
  "dynamical-systems"
 ],
 "ml_areas": [
  "world-model",
  "ssm",
  "rl",
  "training-dynamics"
 ],
 "paper": {
  "arxiv_id": "2608.29272",
  "arxiv_url": "https://arxiv.org/abs/2608.29272",
  "summary_what_math_gives_to_ml": "The paper offers a transferable uncertainty-propagation mechanism: represent nonlinear stochastic rollouts with a finite Gaussian mixture rather than collapsing uncertainty into one Gaussian, while controlling approximation error in Wasserstein distance. This is useful for neural world models, latent state-space models, and model-based reinforcement learning, where nonlinear dynamics and multimodal disturbances make unimodal uncertainty misleading. The most practical transfer is a Gaussian-mixture latent rollout with Wasserstein-controlled component merging, combined with analytic expected costs and affine chance constraints.",
  "title": "Stochastic Nonlinear Model Predictive Control with Gaussian Mixture Uncertainty Propagation",
  "year": "2026"
 },
 "ratings": {
  "difficulty": 6,
  "novelty": 7,
  "usefulness": 8
 },
 "solves": [
  "stability",
  "accuracy",
  "sample-efficiency"
 ],
 "title": "Wasserstein-Controlled Gaussian-Mixture Rollouts",
 "url": "https://synthcore.org/idea/2821/wasserstein-controlled-gaussian-mixture-rollouts",
 "verification": {
  "benchmark": {
   "track": "dynamics",
   "model": "rnn_small",
   "n_seeds": 8,
   "metric_direction": "lower is better",
   "comparison": {
    "baseline_mean": 0.000170967,
    "idea_mean": 0.000672339,
    "delta_mean": 0.000501372,
    "per_seed_diffs": [
     0.00045344399999999995,
     0.000255768,
     0.001010742,
     0.000661155,
     0.00010197900000000001,
     0.00038047100000000006,
     0.000317912,
     0.000829504
    ],
    "idea_wins": 0,
    "n_pairs": 8,
    "p_value": 0.0081,
    "mde": 0,
    "mde_rel_pct": null,
    "verdict": "idea worse (significant)",
    "system_worked": false
   },
   "baseline": {
    "best_cfg": {
     "lr": 0.01
    },
    "sweep": [
     {
      "cfg": {
       "lr": 0.001
      },
      "mean": 0.001177828
     },
     {
      "cfg": {
       "lr": 0.003
      },
      "mean": 0.000704083
     },
     {
      "cfg": {
       "lr": 0.01
      },
      "mean": 0.000203192
     }
    ],
    "full": {
     "mean": 0.000170967,
     "std": 0.000101269,
     "per_seed": [
      0.00029771,
      0.000308663,
      0.000086705,
      0.00011969,
      0.000060004,
      0.000177841,
      0.000047607,
      0.000269516
     ],
     "n": 8
    }
   },
   "idea": {
    "mean": 0.000672339,
    "std": 0.000308222,
    "per_seed": [
     0.000751154,
     0.000564431,
     0.001097447,
     0.000780845,
     0.000161983,
     0.000558312,
     0.000365519,
     0.00109902
    ],
    "n": 8
   },
   "mechanism_signature": {
    "confirmed": false,
    "mixture_chance_abs_error": 0.015057,
    "moment_gaussian_chance_abs_error": 0.01427,
    "observed_event_rate": 0.47,
    "predicted_bimodal_fraction": 0.956667,
    "predicted_mean_component_sd": 0.019355,
    "predicted_mean_mode_separation": 0.556335
   },
   "custom_track": null
  },
  "mechanism_confirmed": false,
  "peer_reviewed": false,
  "practical_verdict": "harms",
  "stage1_mechanism_check": {
   "worked": true,
   "confidence": 9,
   "verdict": "Built a readable nonlinear Gaussian-mixture rollout prototype with disturbance-mode branching, analytic chance constraints, moment calculations, and greedy Gaussian-Wasserstein merging. Mode separation matched the predicted 2d exactly, merging transitioned at the measured pair W2 of 1.8, and empirical error rose sharply after merging. The mixture also retained multimodality that the moment-matched Gaussian lost, with chance-probability gaps up to 0.209 and rollout W2 error reaching 1.052 by horizon 8.",
   "metrics": {
    "baseline": "Moment-matched single Gaussian: empirical W2 error versus the unmerged mixture was 0.473 at horizon 1, 0.476 at horizon 4, 0.654 at horizon 6, and 1.052 at horizon 8; at d=0.9 its chance estimate was 0.7092.",
    "idea": "The mixture separation matched 2d for d={0.1,0.3,0.6,0.9,1.2}. Below epsilon=1.8 it retained 2 components with empirical W2 error 0.024-0.084; at epsilon\u003e=1.8 it merged to 1 component with error about 0.472. At d=0.9 its chance estimate was 0.5001."
   },
   "how_to_run": "python3 gm_rollout_experiment.py",
   "files": [
    "gm_rollout_experiment.py",
    "results.json"
   ],
   "limitations": "This is a one-dimensional toy system, not a trained neural state-space model. The Jacobian is analytic rather than obtained by neural-network autodiff; merging uses pairwise 1D Gaussian W2 rather than exact mixture Wasserstein or Sinkhorn; no FLOP or wall-clock comparison was performed; and exact mixture size grows exponentially with horizon."
  },
  "status": "failed_benchmark",
  "status_label": "Failed on benchmark",
  "updated_at": "2026-09-01T23:44:52",
  "verdict_source": "deterministic test code (paired-seed permutation statistics)"
 }
}
