Struct juggernaut::nl::NeuralLayer [] [src]

pub struct NeuralLayer {
    pub activation: Box<Activation>,
    pub inputs: usize,
    pub neurons: usize,
    pub weights: Matrix,
}

Represents a neural layer with its weights

Fields

Methods

impl NeuralLayer
[src]