![]() |
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 318 of file NeuroNet.mqh.
|
inline |
|
inline |
Destructor.
Definition at line 327 of file NeuroNet.mqh.
|
virtual |
Load method.
| [in] | file_handle | handle of file |
Definition at line 355 of file NeuroNet.mqh.
|
virtual |
Save method.
| [in] | file_handle | handle of file |
Definition at line 336 of file NeuroNet.mqh.
|
inlinevirtual |
| double CConnection::deltaWeight |
last delta of weight used in SGD optimization
Definition at line 322 of file NeuroNet.mqh.
| double CConnection::mt |
First moment in Adam optimization.
Definition at line 323 of file NeuroNet.mqh.
| double CConnection::vt |
Second moment in Adam optimization.
Definition at line 324 of file NeuroNet.mqh.
| double CConnection::weight |
Current weight.
Definition at line 321 of file NeuroNet.mqh.