Navigation
API > API/Plugins > API/Plugins/LearningTraining
Type of response from a Trainer
| Name | UE::Learning::ETrainerResponse |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/LearningTraining/Public/LearningTrainer.h |
| Include Path | #include "LearningTrainer.h" |
Syntax
namespace UE
{
namespace Learning
{
enum ETrainerResponse
{
Success = 0,
Unexpected = 1,
Completed = 2,
Stopped = 3,
Timeout = 4,
NetworkSignalTimeout = 5,
}
}
}
Values
| Name | Remarks |
|---|---|
| Success | The communication was successful. |
| Unexpected | The communication send or received was unexpected. |
| Completed | Training is complete. |
| Stopped | Training is stopped. |
| Timeout | The communication timed-out. |
| NetworkSignalTimeout | The communication timed-out for a network signal. |