pub struct LinearScalerParams<F: Float> { /* private fields */ }
Expand description
Linear Scaler: learns scaling parameters, according to the specified method, from a dataset, producing a fitted linear scaler that can be used to scale different datasets using the same parameters.
§Example
use linfa::traits::{Fit, Transformer};
use linfa_preprocessing::linear_scaling::LinearScaler;
// Load dataset
let dataset = linfa_datasets::diabetes();
// Learn scaling parameters
let scaler = LinearScaler::standard().fit(&dataset).unwrap();
// scale dataset according to parameters
let dataset = scaler.transform(dataset);
Implementations§
Source§impl<F: Float> LinearScalerParams<F>
impl<F: Float> LinearScalerParams<F>
Sourcepub fn new(method: ScalingMethod<F>) -> Self
pub fn new(method: ScalingMethod<F>) -> Self
Initializes the scaler with the specified method.
Sourcepub fn method(self, method: ScalingMethod<F>) -> Self
pub fn method(self, method: ScalingMethod<F>) -> Self
Setter for the scaler method
Trait Implementations§
Source§impl<F: Clone + Float> Clone for LinearScalerParams<F>
impl<F: Clone + Float> Clone for LinearScalerParams<F>
Source§fn clone(&self) -> LinearScalerParams<F>
fn clone(&self) -> LinearScalerParams<F>
Returns a copy 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<F: Debug + Float> Debug for LinearScalerParams<F>
impl<F: Debug + Float> Debug for LinearScalerParams<F>
Source§impl<F: Float, D: Data<Elem = F>, T: AsTargets> Fit<ArrayBase<D, Dim<[usize; 2]>>, T, PreprocessingError> for LinearScalerParams<F>
impl<F: Float, D: Data<Elem = F>, T: AsTargets> Fit<ArrayBase<D, Dim<[usize; 2]>>, T, PreprocessingError> for LinearScalerParams<F>
Source§fn fit(&self, x: &DatasetBase<ArrayBase<D, Ix2>, T>) -> Result<Self::Object>
fn fit(&self, x: &DatasetBase<ArrayBase<D, Ix2>, T>) -> Result<Self::Object>
Fits the input dataset accordng to the scaler method. Will return an error if the dataset does not contain any samples or (in the case of MinMax scaling) if the specified range is not valid.
type Object = LinearScaler<F>
Source§impl<F: PartialEq + Float> PartialEq for LinearScalerParams<F>
impl<F: PartialEq + Float> PartialEq for LinearScalerParams<F>
impl<F: Eq + Float> Eq for LinearScalerParams<F>
impl<F: Float> StructuralPartialEq for LinearScalerParams<F>
Auto Trait Implementations§
impl<F> Freeze for LinearScalerParams<F>where
F: Freeze,
impl<F> RefUnwindSafe for LinearScalerParams<F>where
F: RefUnwindSafe,
impl<F> Send for LinearScalerParams<F>
impl<F> Sync for LinearScalerParams<F>
impl<F> Unpin for LinearScalerParams<F>
impl<F> UnwindSafe for LinearScalerParams<F>where
F: UnwindSafe,
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.