GTK+ IOStream
Beta
<< GTK+ >> add C++ IOStream operators to GTK+. Now with extra abilities ... like network serialisation
|
#include <NeuralNetwork.H>
Public Member Functions | |
NeuralNetwork (void) | |
Constructor. More... | |
virtual | ~NeuralNetwork (void) |
Destructor. More... | |
void | activate (vector< NeuralLayer< TYPE > * > &layers, Eigen::Matrix< TYPE, Eigen::Dynamic, 1 > &input) |
Implements a feed forward neural network.
The network is used as follows :
TYPE | the precision of the data to use, e.g. float, double |
Definition at line 210 of file NeuralNetwork.H.
|
inline |
Constructor.
Definition at line 213 of file NeuralNetwork.H.
|
inlinevirtual |
Destructor.
Definition at line 216 of file NeuralNetwork.H.
|
inline |
Activates all layers in the neural network.
The last layer has the output
layers | Various neural network layers, 0 being the input layer |
input | The input vector to feed forward |
Definition at line 223 of file NeuralNetwork.H.