Deep Neural Network for MNIST Handwriting Recognition
1.0
Deep Neural Network for MNIST Handwriting Recognition
|
Data structure attached to a node and pointing to another node as well as to a weight. More...
#include <dnn.h>
Data Fields | |
Node * | nodePtr |
Weight * | weightPtr |
Data structure attached to a node and pointing to another node as well as to a weight.
Every node has 2 types of connections: forward and backward. Backward connections are used during feed forward to locate the normalized output in the previous layer. Forward connections are used during back propagation to locate the partial errors in the following layer.
Node* nodePtr |
Weight* weightPtr |