pub struct MLP {
pub layers: Vec<Layer>,
pub learning_rate: f64,
pub task: Task,
pub rng: StdRng,
}Fields§
§layers: Vec<Layer>§learning_rate: f64§task: Task§rng: StdRngImplementations§
Auto Trait Implementations§
impl Freeze for MLP
impl RefUnwindSafe for MLP
impl Send for MLP
impl Sync for MLP
impl Unpin for MLP
impl UnsafeUnpin for MLP
impl UnwindSafe for MLP
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