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§
Sourcefn get_output(self) -> RowVector<O>
fn get_output(self) -> RowVector<O>
Get the final output of the network from the layer outputs.