|
NeuroTIC 0.0
|
Root structural container of a NeuroTIC network. More...
#include <ntcore.h>

Data Fields | |
| input_t | inputs |
| layer_t | layers |
| uint16_t * | neurons |
| data_t ** | in |
| neuron_s ** | nn |
| wiring_s * | wiring |
| data_t **** | bff |
| data_t ** | out |
Root structural container of a NeuroTIC network.
Represents the complete structural topology and memory graph required to execute a network instance.
The network owns its internal structures. External input sources are considered external references.
| data_t**** net_s::bff |
Buffer reference sets.
Referenced by buildnet().
| data_t** net_s::in |
External input references.
Referenced by buildnet().
| input_t net_s::inputs |
Number of external inputs.
Referenced by buildnet(), and loadnet().
| layer_t net_s::layers |
Total number of layers.
Referenced by backpropagation(), buildnet(), feedforward(), loadnet(), newdense(), newfeedforward(), newnet(), newtraindata(), randnet(), and savenet().
| uint16_t* net_s::neurons |
Neuron count per layer.
Referenced by backpropagation(), buildnet(), feedforward(), loadnet(), newdense(), newfeedforward(), newnet(), randnet(), and savenet().
| neuron_s** net_s::nn |
Layered neuron arrays.
Referenced by buildnet(), feedforward(), loadnet(), newdense(), newfeedforward(), randnet(), and savenet().
| data_t** net_s::out |
Output references.
Referenced by buildnet(), and feedforward().
| wiring_s* net_s::wiring |
Wiring descriptors per layer.
Referenced by buildnet(), loadnet(), newdense(), newfeedforward(), and savenet().