pub struct BaseNeuralNet<'a, T: Criterion> { /* private fields */ }Expand description
Base Neural Network struct
This struct cannot be instantianated and is used internally only.
Trait Implementations§
Source§impl<'a, T: Criterion> Optimizable for BaseNeuralNet<'a, T>
Compute the gradient of the Neural Network using the
back propagation algorithm.
impl<'a, T: Criterion> Optimizable for BaseNeuralNet<'a, T>
Compute the gradient of the Neural Network using the back propagation algorithm.
Auto Trait Implementations§
impl<'a, T> Freeze for BaseNeuralNet<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for BaseNeuralNet<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for BaseNeuralNet<'a, T>where
T: Send,
impl<'a, T> Sync for BaseNeuralNet<'a, T>where
T: Sync,
impl<'a, T> Unpin for BaseNeuralNet<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for BaseNeuralNet<'a, 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