Enum BehaviorType
Defines what type of behavior the Agent will be using
Namespace: Unity.MLAgents.Policies
Assembly: Unity.ML-Agents.dll
Syntax
[Serializable]
public enum BehaviorType
Fields
Name | Description |
---|---|
Default | The Agent will use the remote process for decision making. if unavailable, will use inference and if no model is provided, will use the heuristic. |
HeuristicOnly | The Agent will always use its heuristic |
InferenceOnly | The Agent will always use inference with the provided neural network model. |