Cpp ML Library  1.0.0
A library of Machine Learning Algorithmns seen from the Udemy course Machine Learning A to Z.
Classes
NeuralNetwork.hpp File Reference

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...
 

Detailed Description

A simple neural network implementation in C++.