MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The IxTrainerCallback provides functions used by each trainer to 'call-back' to the parent for information and updates. More...
Public Member Functions | |
void | OnInitialize (InitializeArgs e) |
The OnIntialize callback fires when initializing the trainer. More... | |
void | OnShutdown () |
The OnShutdown callback fires when shutting down the trainer. More... | |
void | OnGetData (GetDataArgs e) |
The OnGetData callback fires from within the Train method and is used to get a new observation data. More... | |
void | OnUpdateStatus (GetStatusArgs e) |
The OnGetStatus callback fires on each iteration within the Train method. More... | |
void | OnWait (WaitArgs e) |
The OnWait callback fires when waiting for a shutdown. More... | |
The IxTrainerCallback provides functions used by each trainer to 'call-back' to the parent for information and updates.
The IxTrainerCallback is passed to each trainer.
Definition at line 302 of file Interfaces.cs.
void MyCaffe.trainers.IxTrainerCallback.OnGetData | ( | GetDataArgs | e | ) |
The OnGetData callback fires from within the Train method and is used to get a new observation data.
e | Specifies the argument sent with the callback. |
Implemented in MyCaffe.trainers.MyCaffeTrainerDual, MyCaffe.trainers.MyCaffeTrainerRL, and MyCaffe.trainers.MyCaffeTrainerRNN.
void MyCaffe.trainers.IxTrainerCallback.OnInitialize | ( | InitializeArgs | e | ) |
The OnIntialize callback fires when initializing the trainer.
e | Specifies the argument sent with the callback. |
Implemented in MyCaffe.trainers.MyCaffeTrainerDual, MyCaffe.trainers.MyCaffeTrainerRL, and MyCaffe.trainers.MyCaffeTrainerRNN.
void MyCaffe.trainers.IxTrainerCallback.OnShutdown | ( | ) |
The OnShutdown callback fires when shutting down the trainer.
Implemented in MyCaffe.trainers.MyCaffeTrainerDual, MyCaffe.trainers.MyCaffeTrainerRL, and MyCaffe.trainers.MyCaffeTrainerRNN.
void MyCaffe.trainers.IxTrainerCallback.OnUpdateStatus | ( | GetStatusArgs | e | ) |
The OnGetStatus callback fires on each iteration within the Train method.
e | Specifies the argument sent with the callback. |
Implemented in MyCaffe.trainers.MyCaffeTrainerDual, MyCaffe.trainers.MyCaffeTrainerRL, and MyCaffe.trainers.MyCaffeTrainerRNN.
void MyCaffe.trainers.IxTrainerCallback.OnWait | ( | WaitArgs | e | ) |
The OnWait callback fires when waiting for a shutdown.
e | Specifies the argument sent with the callback. |
Implemented in MyCaffe.trainers.MyCaffeTrainerDual, MyCaffe.trainers.MyCaffeTrainerRL, and MyCaffe.trainers.MyCaffeTrainerRNN.