pub struct RegressionInput {
pub x: DataMatrix,
pub y: Vec<f64>,
pub fit_intercept: bool,
pub alpha: Option<f64>,
}Expand description
Regression input for batch execution.
Fields§
§x: DataMatrixFeature matrix X (n_samples x n_features).
y: Vec<f64>Target vector y (n_samples).
fit_intercept: boolWhether to fit intercept.
alpha: Option<f64>Regularization parameter (for Ridge regression).
Implementations§
Source§impl RegressionInput
impl RegressionInput
Sourcepub fn new(x: DataMatrix, y: Vec<f64>) -> Self
pub fn new(x: DataMatrix, y: Vec<f64>) -> Self
Create a new regression input.
Sourcepub fn with_ridge(self, alpha: f64) -> Self
pub fn with_ridge(self, alpha: f64) -> Self
Enable Ridge regularization with given alpha.
Trait Implementations§
Source§impl Clone for RegressionInput
impl Clone for RegressionInput
Source§fn clone(&self) -> RegressionInput
fn clone(&self) -> RegressionInput
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 moreSource§impl Debug for RegressionInput
impl Debug for RegressionInput
Source§impl<'de> Deserialize<'de> for RegressionInput
impl<'de> Deserialize<'de> for RegressionInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RegressionInput
impl RefUnwindSafe for RegressionInput
impl Send for RegressionInput
impl Sync for RegressionInput
impl Unpin for RegressionInput
impl UnwindSafe for RegressionInput
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.