Loopy Belief Propagation

Cross-network probability propagation across 11,986 prereq + killer + correlate edges. Damped log-odds-space iterative pool with intrinsic anchoring. Approximate (not full Pearl LBP) — see scripts/ops/run_loopy_belief_propagation.py.

Last run
6h ago
2026-06-07T02:00:00Z
Iterations
5
converged
Residual
0.00596
max |Δbelief| at termination
Significant moves
166
of 1659 nodes (|Δ| > 0.01)
Beliefs applied
no (diagnostic)
cross_impact only

Per-edge-kind impact (latest run)

Edge kindRowsMean ΔMin ΔMax Δ
killer4,0330.0206-0.26790.4587
lbp_v3:correlate:runba893ab6499f773-0.0044-0.54250.4396
prereq7,180-0.0317-0.46770.3982

Top node moves (latest run, 0 of 166)

No LBP moves yet. Run LBP_APPLY_BELIEFS=true inference/.venv/bin/python scripts/ops/run_loopy_belief_propagation.py on the droplet.

Top edge contributions (latest run)

SourceEdgeDestinationP(c|s=T)P(c|s=F)Δ implied
S_AGI_MID_2029
AGI mid: Kurzweil 2029 path
otherFUT_024
XPT 2022 tournament assigned mere 2.3% probability
0.7500.300-0.542
S_HUMANOID_CONSUMER_2030
Humanoid R3: 1M+ consumer by Nov 2030
prereq229_028
Figure will NOT license out its neural net or hard
0.9200.050-0.468
TK15
SpaceX Starship Catastrophic Failure
killer248_019
US data center moratoriums will push AI compute ou
0.0500.650+0.459
TK02
AI Compute Supply Shock (TSMC/Taiwan Disruption)
killer248_019
US data center moratoriums will push AI compute ou
0.0500.650+0.459
S_AI_PAUSE_2026
Major-country AI pause beginning 2026
otherSEM_038
Digital superintelligence (smarter than any human
0.3000.650+0.440
231_018
Blitz will switch to next generation model in late
prereq235_038
David Sinclair begins partial epigenetic reprogram
0.9200.050-0.437
S_COMPUTE_STARGATE_FAILURE
Stargate failure: <500MW by 2029
otherSEM_005
Stargate is a $500 billion multiyear capex program
0.8500.200-0.426
S_IPO_TRILLION_2026
First $1T+ IPO in 2026
other246_001
SpaceX will IPO at $2 trillion valuation, raising
0.8500.200-0.424
S_HUMANOID_MASS_2033
Humanoid R4: 10M+ cumulative by Dec 2033
otherCYB_018
Figure AI valuation has eclipsed $39 billion by ea
0.8500.200-0.423
231_002
Grok 5 launches in March with massive expansion in
prereq230_014
The consulting industry will go through the roof a
0.9200.050-0.419
231_018
Blitz will switch to next generation model in late
prereq230_014
The consulting industry will go through the roof a
0.9200.050-0.419
235_016
SpaceX IPO anticipated potentially as early as nex
prereq248_003
SpaceX plans to launch 40,000 V3 Starlink satellit
0.9200.050-0.416
235_016
SpaceX IPO anticipated potentially as early as nex
prereq248_005
V3 Starlink satellites will deliver over 1 TB/s do
0.9200.050-0.416
231_002
Grok 5 launches in March with massive expansion in
prereq247_058
Jury selection begins April 27, 2026 for Musk v Op
0.9200.050-0.410
231_018
Blitz will switch to next generation model in late
prereq247_058
Jury selection begins April 27, 2026 for Musk v Op
0.9200.050-0.410

Recent LBP runs

WhenItersResidualConvergedSignificant movesAppliedRun ID
2026-06-07T02:00:00Z50.00596yes166noba893ab6499f
2026-05-31T02:00:02Z40.00674yes118no807dd6f649b1
2026-05-24T02:00:02Z40.01000yes165yes806b02f82f58
2026-05-17T02:00:01Z50.00689yes449yese607fa961f0b
2026-05-10T02:00:02Z60.00584yes937yese5c18d29fb42
2026-05-03T02:00:01Z60.00677yes1182yes1a683ac9e205
2026-04-30T19:21:21Z60.00673yes1132noffd25072aee9
2026-04-30T19:17:52Z50.00551yes1046no1c6a06976c86

Methodology

Per-iteration update for each non-fixed node c with parent edges (p_i → c):
  α_i = edge.p_dst_given_src       # P(c=T | p_i=T)
  β_i = edge.p_dst_given_not_src   # P(c=T | p_i=F)
  edge_implied_prob = belief[p_i] × α_i + (1 − belief[p_i]) × β_i
  edge_logit = logit(edge_implied_prob)

  # Pool incoming edge implications: geometric mean of odds
  mean_edge_logit = mean(edge_logit_i)

  # Mix with intrinsic prior (current_prob from Part 2 blend)
  mixed_logit = w_intrinsic × logit(intrinsic[c]) + (1 − w_intrinsic) × mean_edge_logit

  # Damp to prevent oscillation in cycles
  new_logit[c] = α_damp × mixed_logit + (1 − α_damp) × old_logit[c]
  new_belief[c] = sigmoid(new_logit[c])

Convergence: max |Δbelief| < ε across all nodes.

Parameters (defaults):
  damping       α_damp      = 0.5
  intrinsic mix w_intrinsic = 0.5
  max_iters                 = 50
  ε convergence             = 0.01

Edge conditional defaults (if NULL):
  prereq:  P(c|s=T) = clamp(c.prior, 0.05, 0.95)   P(c|s=F) = 0.05
  killer:  P(c|s=T) = 0.05                          P(c|s=F) = clamp(c.prior, 0.05, 0.95)

Fixed inputs (belief never updates):
  thesis_killer nodes (TK01..TK15) — root exogenous risks set by analyst.

NOT pure Pearl LBP — approximate damped log-opinion-pool with intrinsic
anchoring. Documented in futurepredictiontool.md Phase 4 Part 4.