pub struct IncrementalMultiOutputRegressionTrained {
pub coef: Array2<Float>,
pub intercept: Array1<Float>,
pub n_features: usize,
pub n_outputs: usize,
pub n_samples_seen: usize,
pub current_learning_rate: Float,
pub feature_mean: Array1<Float>,
pub feature_std: Array1<Float>,
pub config: IncrementalMultiOutputRegressionConfig,
}Expand description
Trained state for Incremental Multi-Output Regression
Fields§
§coef: Array2<Float>Coefficient matrix (n_features x n_outputs)
intercept: Array1<Float>Intercept vector (n_outputs)
n_features: usizeNumber of features
n_outputs: usizeNumber of outputs
n_samples_seen: usizeNumber of samples seen so far
current_learning_rate: FloatCurrent learning rate
feature_mean: Array1<Float>Running mean of features (for normalization)
feature_std: Array1<Float>Running std of features (for normalization)
config: IncrementalMultiOutputRegressionConfigConfiguration
Trait Implementations§
Source§impl Clone for IncrementalMultiOutputRegressionTrained
impl Clone for IncrementalMultiOutputRegressionTrained
Source§fn clone(&self) -> IncrementalMultiOutputRegressionTrained
fn clone(&self) -> IncrementalMultiOutputRegressionTrained
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IncrementalMultiOutputRegressionTrained
impl RefUnwindSafe for IncrementalMultiOutputRegressionTrained
impl Send for IncrementalMultiOutputRegressionTrained
impl Sync for IncrementalMultiOutputRegressionTrained
impl Unpin for IncrementalMultiOutputRegressionTrained
impl UnwindSafe for IncrementalMultiOutputRegressionTrained
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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