pub struct ModularFramework { /* private fields */ }Expand description
The main modular framework that coordinates components
Implementations§
Source§impl ModularFramework
impl ModularFramework
Sourcepub fn with_config(config: ModularConfig) -> Self
pub fn with_config(config: ModularConfig) -> Self
Create a new modular framework with custom configuration
Sourcepub fn solve<S: OptimizationSolver + ?Sized>(
&self,
loss: &dyn LossFunction,
regularization: Option<&dyn Regularization>,
solver: &S,
data: &ObjectiveData,
initial_guess: Option<&Array1<Float>>,
) -> Result<OptimizationResult>
pub fn solve<S: OptimizationSolver + ?Sized>( &self, loss: &dyn LossFunction, regularization: Option<&dyn Regularization>, solver: &S, data: &ObjectiveData, initial_guess: Option<&Array1<Float>>, ) -> Result<OptimizationResult>
Solve an optimization problem using the modular components
Trait Implementations§
Source§impl Debug for ModularFramework
impl Debug for ModularFramework
Auto Trait Implementations§
impl Freeze for ModularFramework
impl RefUnwindSafe for ModularFramework
impl Send for ModularFramework
impl Sync for ModularFramework
impl Unpin for ModularFramework
impl UnwindSafe for ModularFramework
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more