|
Cpp ML Library
1.0.0
A library of Machine Learning Algorithmns seen from the Udemy course Machine Learning A to Z.
|
A simple neural network implementation in C++. More...
#include <vector>#include <cmath>#include <cstdlib>#include <cassert>#include <iostream>Go to the source code of this file.
Classes | |
| class | Connection |
| Represents a connection between neurons with a weight and a change in weight. More... | |
| class | Neuron |
| Represents a single neuron in the neural network. More... | |
| class | NeuralNetwork |
| Represents the neural network consisting of layers of neurons. More... | |
A simple neural network implementation in C++.