What is a Policy in RoboJuDo?
releaseA Policy is the core component responsible for robot control. It acts as the bridge between the environment and the robot's actuators by:
- Receiving
env_datafrom the environment. - Receiving
ctrl_datafrom the controller. - Organizing observations.
- Inferring the final actions for the robot.
Policy serves as the base class for all specific policy implementations (e.g., UnitreePolicy, AMOPolicy, AsapPolicy).