Module topology

Source
Expand description

A module containing the NeuralNetworkTopology struct. This is what you want to use in the DNA of your agent, as it is the thing that goes through nextgens and suppors mutation.

Re-exports§

pub use activation::*;

Modules§

activation
Contains structs and traits used for activation functions.
nnt_serdeserde
Contains useful structs for serializing/deserializing a NeuronTopology

Structs§

NeuralNetworkTopology
A stateless neural network topology. This is the struct you want to use in your agent’s inheritance. See NeuralNetwork::from for how to convert this to a runnable neural network.
NeuronTopology
A stateless version of Neuron.

Enums§

NeuronLocation
A pseudo-pointer of sorts used to make structural conversions very fast and easy to write.