Navigation
API > API/Plugins > API/Plugins/Learning
Completion Mode
| Name | UE::Learning::ECompletionMode |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/LearningCompletion.h |
| Include Path | #include "LearningCompletion.h" |
Syntax
namespace UE
{
namespace Learning
{
enum ECompletionMode
{
Running = 0,
Truncated = 1,
Terminated = 2,
}
}
}
Values
| Name | Remarks |
|---|---|
| Running | Episode is still running. |
| Truncated | Episode ended early but was still in progress. Value function will be used to estimate final return. |
| Terminated | Episode ended early and zero reward was expected for all future steps. |