Skip to main content

gam_sae/inference/
mod.rs

1//! SAE-level inference instruments that descended into `gam-sae` during the
2//! #1521 crate carve (top of the DAG).
3//!
4//! These modules consume the SAE manifold term (`crate::manifold`,
5//! `crate::chart_canonicalization`) plus solver/terms/problem items reached as
6//! `gam_solve::*`, `gam_terms::*`, and `gam_problem::*`. They were hoisted out
7//! of the monolith's `gam::inference::*` namespace; the root crate keeps the
8//! old `gam::inference::{atom_lens, steering, ...}` paths valid via re-exports.
9
10pub mod atom_lens;
11pub mod checkpoint_dynamics;
12pub mod harvest;
13pub mod layer_transport;
14pub mod probe_runner;
15pub mod riesz;
16pub mod steering;