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: String
§drop_column_number: Vec<usize>
§test_size: f64
§learning_rate: f64
§iter_count: i32
§reg_strength: f64
Implementations§
Auto Trait Implementations§
impl Freeze for SSVM
impl RefUnwindSafe for SSVM
impl Send for SSVM
impl Sync for SSVM
impl Unpin for SSVM
impl UnwindSafe for SSVM
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