MNIST-3LNN  1.0
A simple 3-layer neural network to recognize handwritten single digit numbers from the MNIST image files.
Data Fields
Network Struct Reference

Dynamic data structure holding the whole network. More...

#include <3lnn.h>

Data Fields

int inpNodeSize
 
int inpLayerSize
 
int hidNodeSize
 
int hidLayerSize
 
int outNodeSize
 
int outLayerSize
 
double learningRate
 Factor by which connection weight changes are applied. More...
 
ActFctType hidLayerActType
 
ActFctType outLayerActType
 
Layer layers []
 

Detailed Description

Dynamic data structure holding the whole network.

Definition at line 63 of file 3lnn.h.

Field Documentation

ActFctType hidLayerActType

Definition at line 71 of file 3lnn.h.

int hidLayerSize

Definition at line 67 of file 3lnn.h.

int hidNodeSize

Definition at line 66 of file 3lnn.h.

int inpLayerSize

Definition at line 65 of file 3lnn.h.

int inpNodeSize

Definition at line 64 of file 3lnn.h.

Layer layers[]

Definition at line 73 of file 3lnn.h.

double learningRate

Factor by which connection weight changes are applied.

Definition at line 70 of file 3lnn.h.

ActFctType outLayerActType

Definition at line 72 of file 3lnn.h.

int outLayerSize

Definition at line 69 of file 3lnn.h.

int outNodeSize

Definition at line 68 of file 3lnn.h.


The documentation for this struct was generated from the following file: