Module neural

Module neural 

Source
Expand description

Neural network module.

Structs§

LinearLayer
A linear layer in a neural network, with sigmoid activation.
SimpleLayerOutputs
Outputs for SimpleNeuralNetwork.
SimpleNeuralNetwork
A simple feedforward neural network with I inputs, H neurons in the hidden layer, and O outputs.

Traits§

LayerOutputs
A trait for layer outputs in a neural network, requiring a method to get the final output.
NeuralNetwork
A trait for neural networks, with I inputs and O outputs.