pub struct LogisticRegression<T> { /* private fields */ }Expand description
Logistic regression
Fore more information:
https://en.wikipedia.org/wiki/Logistic_regression
§Examples
Implementations§
Source§impl<T> LogisticRegression<T>where
T: Real,
impl<T> LogisticRegression<T>where
T: Real,
Sourcepub fn new(optim: Gradient<T>) -> LogisticRegression<T>
pub fn new(optim: Gradient<T>) -> LogisticRegression<T>
pub fn parameters(&self) -> Option<Vector<T>>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for LogisticRegression<T>where
T: Freeze,
impl<T> RefUnwindSafe for LogisticRegression<T>where
T: RefUnwindSafe,
impl<T> Send for LogisticRegression<T>where
T: Send,
impl<T> Sync for LogisticRegression<T>where
T: Sync,
impl<T> Unpin for LogisticRegression<T>where
T: Unpin,
impl<T> UnwindSafe for LogisticRegression<T>where
T: 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