![]() |
Neuron Net
|
Class of connection to anothe neuron. More...
Public Member Functions | |
CConnection (double w) | |
Constructor. More... | |
~CConnection () | |
Destructor. More... | |
virtual bool | Save (int const file_handle) |
Save method. More... | |
virtual bool | Load (int const file_handle) |
Load method. More... | |
virtual int | Type (void) const |
Identificator of class. More... | |
Public Attributes | |
double | weight |
Current weight. More... | |
double | deltaWeight |
last delta of weight used in SGD optimization More... | |
double | mt |
First moment in Adam optimization. More... | |
double | vt |
Second moment in Adam optimization. More... | |
Class of connection to anothe neuron.
Detailed description on the link.
Definition at line 311 of file NeuroNet.mqh.
|
inline |
|
inline |
Destructor.
Definition at line 320 of file NeuroNet.mqh.
|
virtual |
Load method.
[in] | file_handle | handle of file |
Definition at line 348 of file NeuroNet.mqh.
|
virtual |
Save method.
[in] | file_handle | handle of file |
Definition at line 329 of file NeuroNet.mqh.
|
inlinevirtual |
double CConnection::deltaWeight |
last delta of weight used in SGD optimization
Definition at line 315 of file NeuroNet.mqh.
double CConnection::mt |
First moment in Adam optimization.
Definition at line 316 of file NeuroNet.mqh.
double CConnection::vt |
Second moment in Adam optimization.
Definition at line 317 of file NeuroNet.mqh.
double CConnection::weight |
Current weight.
Definition at line 314 of file NeuroNet.mqh.