Expand description
Neural network module.
Structs§
- Linear
Layer - A linear layer in a neural network, with sigmoid activation.
- Simple
Layer Outputs - Outputs for
SimpleNeuralNetwork. - Simple
Neural Network - A simple feedforward neural network with
Iinputs,Hneurons in the hidden layer, andOoutputs.
Traits§
- Layer
Outputs - A trait for layer outputs in a neural network, requiring a method to get the final output.
- Neural
Network - A trait for neural networks, with
Iinputs andOoutputs.