[][src]Struct simple_ml::SSVM

pub struct SSVM {
    pub file_path: String,
    pub drop_column_number: Vec<usize>,
    pub test_size: f64,
    pub learning_rate: f64,
    pub iter_count: i32,
    pub reg_strength: f64,
}

Fields

file_path: Stringdrop_column_number: Vec<usize>test_size: f64learning_rate: f64iter_count: i32reg_strength: f64

Implementations

impl SSVM[src]

pub fn fit(&self) -> Vec<f64>[src]

Auto Trait Implementations

impl RefUnwindSafe for SSVM

impl Send for SSVM

impl Sync for SSVM

impl Unpin for SSVM

impl UnwindSafe for SSVM

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,