Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1] - 2026-07-28

### Added

- **Chebyshev scalarization for non-convex Pareto fronts**
(`inference::pareto::ChebyshevScalarization`): the weighted-max norm
`max_i w_i·(f_i − z_i)` over an ideal point `z`, reaching every weakly
Pareto-optimal point — including the non-convex front regions where every
weighted-sum optimum provably collapses onto the endpoints. Supports a
latent weight (like `ParetoScalarization`) or a **fixed** weight
(`with_weight`) for uniform front sweeps. Pinned at the theorem level on
the concave front `f1 = x, f2 = 1 − x²`: fixed-w weighted-sum mass avoids
the interior (< 0.1) while fixed-w Chebyshev concentrates on the interior
front point `x* = (√5−1)/2`, and a weight sweep traces the whole front.
- **Honest marginal-tilt documentation** for the latent-weight Pareto models:
the `w`-marginal is tilted by `exp(−s·m(w))` (the scalarized optimum's
value), so the *conditional* `x | w` is what tracks the front; uniform
coverage comes from fixed-weight sweeps. New regression
`test_chebyshev_latent_weight_conditional_tracks_front` pins the
conditional property.
- **"Evolution as inference" explorable** (evo.fugue.run, Architecture →
Evolution as Inference): `ExploreSmcInference` in `fugue-evo-wasm` steps
the crate's real inference layer one tempering rung at a time — Gaussian
prior program, twin-peaks Boltzmann target, fugue's SMC primitives
(reweight / ESS-triggered systematic resampling / typed-MH rejuvenation /
crossover kernel), exact tempered-density heat recomputed each rung,
β-ladder up to annealed-optimizer territory, and live ESS / log-evidence /
swap readouts. The wasm crate now enables the `ppl` feature and depends on
`fugue-ppl` directly. Engine pinned by determinism, ladder-shape,
analytic-posterior-mean, analytic-evidence, and annealing-concentration
tests; the page verified live in a browser against the built wasm.


## [0.3.0] - 2026-07-28

**Inference-first.** fugue-evo's identity is now "an implementation of fugue
Expand Down
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lto = true

[package]
name = "fugue-evo"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Alex Nodeland"]
description = "An implementation of fugue for running evolutionary algorithms as Bayesian inference: priors and likelihoods as probabilistic programs, tempered SMC in trace space, annealed optimization, Pareto posteriors - plus a standalone classical EC toolkit"
Expand Down
3 changes: 2 additions & 1 deletion crates/fugue-evo-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
# Classic EC layer without parallel/checkpoint/ppl features
fugue-evo = { path = "../..", default-features = false, features = ["std", "classic"] }
fugue-evo = { path = "../..", default-features = false, features = ["std", "classic", "ppl"] }
fugue-ppl = { path = "../../../fugue", version = "0.2.1" }

# WASM bindings
wasm-bindgen = "0.2"
Expand Down
Loading
Loading