pub struct NeuralNet {
pub weights: Vec<Vec<Vec<f32>>>,
pub biases: Vec<Vec<f32>>,
/* private fields */
}Fields§
§weights: Vec<Vec<Vec<f32>>>§biases: Vec<Vec<f32>>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NeuralNet
impl !RefUnwindSafe for NeuralNet
impl Send for NeuralNet
impl Sync for NeuralNet
impl Unpin for NeuralNet
impl !UnwindSafe for NeuralNet
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