Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 622 Bytes

readme.md

File metadata and controls

22 lines (16 loc) · 622 Bytes
Fully Connected Feed Forward Neural Network in C++

Keywords: Neural Network, Back Propagation, Feed Forward, Activation Functions, Loss Functions, Sigmoid, ReLU, TanH, Non Linear Functions, Artificial Intelligence, Machine Learning,

To Do's

1. Neuron Class [inputs, weights].
2. Layer Class [bias, activation function].
3. Network.
4. Topology [no. of layers, no. of neurons].
5. Activation Function Mechanisms [callbacks]
6. Forward Pass.
7. Back Prop.
8. Loss Function Mechanisms [callbacks].

Activation Functions:

1. Sigmoid.
2. ReLU
3. TanH
4.