Enum BehaviorType
Defines what type of behavior the Agent will be using
Namespace: Unity.MLAgents.Policies
Syntax
public enum BehaviorType : intFields
| Name | Description | Value | 
|---|---|---|
| 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. | 0 | 
| HeuristicOnly | The Agent will always use its heuristic | 1 | 
| InferenceOnly | The Agent will always use inference with the provided neural network model. | 2 |