LayerOutputs

Trait LayerOutputs 

Source
pub trait LayerOutputs<const O: usize> {
    // Required method
    fn get_output(self) -> RowVector<O>;
}
Expand description

A trait for layer outputs in a neural network, requiring a method to get the final output.

Required Methods§

Source

fn get_output(self) -> RowVector<O>

Get the final output of the network from the layer outputs.

Implementors§

Source§

impl<const H: usize, const O: usize> LayerOutputs<O> for SimpleLayerOutputs<H, O>