//! Diffusion model (DDPM/DDIM) for price path generation //! //! This module re-exports the `ml-supervised` Diffusion implementation and keeps bridge //! modules that depend on types from both `ml-supervised` and the parent `ml` crate. // Re-export everything from the ml-supervised diffusion module pub use ml_supervised::diffusion::*; // Bridge modules that depend on ml-internal types (UnifiedTrainable) pub mod trainable; // Re-export bridge types pub use trainable::DiffusionTrainableAdapter;