![]() |
Neuron Net
|
Class of layer decription. Used to describe the structure of a neural network from the main program. More...
Public Member Functions | |
CLayerDescription (void) | |
Constructor. More... | |
~CLayerDescription (void) | |
Destructor. More... | |
Public Attributes | |
int | type |
Type of neurons in layer (Defines Object types identified) More... | |
int | count |
Number of neurons. More... | |
int | window |
Size of input window. More... | |
int | window_out |
Size of output window. More... | |
int | step |
Step size. More... | |
ENUM_ACTIVATION | activation |
Type of activation function (ENUM_ACTIVATION) More... | |
ENUM_OPTIMIZATION | optimization |
Type of optimization method (ENUM_OPTIMIZATION) More... | |
Class of layer decription. Used to describe the structure of a neural network from the main program.
Detailed description on the link.
Definition at line 1324 of file NeuroNet.mqh.
CLayerDescription::CLayerDescription | ( | void | ) |
Constructor.
Definition at line 1341 of file NeuroNet.mqh.
|
inline |
Destructor.
Definition at line 1328 of file NeuroNet.mqh.
ENUM_ACTIVATION CLayerDescription::activation |
Type of activation function (ENUM_ACTIVATION)
Definition at line 1335 of file NeuroNet.mqh.
int CLayerDescription::count |
Number of neurons.
Definition at line 1331 of file NeuroNet.mqh.
ENUM_OPTIMIZATION CLayerDescription::optimization |
Type of optimization method (ENUM_OPTIMIZATION)
Definition at line 1336 of file NeuroNet.mqh.
int CLayerDescription::step |
Step size.
Definition at line 1334 of file NeuroNet.mqh.
int CLayerDescription::type |
Type of neurons in layer (Defines Object types identified)
Definition at line 1330 of file NeuroNet.mqh.
int CLayerDescription::window |
Size of input window.
Definition at line 1332 of file NeuroNet.mqh.
int CLayerDescription::window_out |
Size of output window.
Definition at line 1333 of file NeuroNet.mqh.