Interface IActuator
Abstraction that facilitates the execution of actions.
Inherited Members
Namespace: Unity.MLAgents.Actuators
Syntax
public interface IActuator : IActionReceiver, IHeuristicProviderProperties
ActionSpec
The specification of the actions for this IActuator.
Declaration
ActionSpec ActionSpec { get; }Property Value
| Type | Description | 
|---|---|
| ActionSpec | 
See Also
Name
Gets the name of this IActuator which will be used to sort it.
Declaration
string Name { get; }Property Value
| Type | Description | 
|---|---|
| String | 
Methods
ResetData()
Resets the internal state of the actuator. This is called at the end of an Agent's episode. Most implementations can leave this empty.
Declaration
void ResetData()