Neural network C++ Guided project tutorial
Neural network Simulator design in C++ Guided project
Description
This course teaches the practical design of a Neural network simulator using C++. It is recommended for all levels of C++ programmers with a theoretical knowledge of Neural network and looking forward to implement them in practice. The course interactively simulates the Neural network from the design of the class called Neuron, to the implementation of the Neuron layers in Vectors and finally the top level design consisting of the input layer, hidden layer and the output layer. Some random training samples will be generated which will be feed to the input layer through a vector and progress to the output layer through feed forward. The back propagation is also implemented which enables us to calculate the error and update the weight for a more accurate result. The training samples used in this course is for demonstration as the concept of sample generation is well explained. At the end of the course the student should be able generate real samples for testings.
Some of the Core concepts we will learn in this course includes:
Feed forward .
Bias Neuron.
Transfer function.
Back propagation.
Activation function.
Root mean square error.
Transfer function derivative.
Generating training samples.
Output and hidden layer Gradient.
Some of the C++ concepts used includes:
Assert()
prototyping
Class design
Nested Vectors
Reference Variables
Static class variables
Data hiding and encapsulation
What You Will Learn!
- The student will learn how to design the structure of a neural network including its neurons, bias, input layer, hidden layers, output layers and weights
- The student will have a clear understanding of how the feed forward mechanism is used to shift inputs from the input layer through the output layer
- The student will learn how to calculate the Root Mean Square error, output and hidden gradient, transfer function and the derivatives for a neural network
- The student will also carryout back propagation on a neural network after the feed forward and use it for adjusting the weights of the neurons.
- The student will learn how to generate training samples
Who Should Attend!
- All levels C++ developer