Training with an RL Agent#

In the previous tutorials, we covered how to define an RL task environment, register it into the gym registry, and interact with it using a random agent. We now move on to the next step: training an RL agent to solve the task.

Although the envs.ManagerBasedRLEnv conforms to the gymnasium.Env interface, it is not exactly a gym environment. The input and outputs of the environment are not numpy arrays, but rather based on torch tensors with the first dimension being the number of environment instances.

Additionally, most RL libraries expect their own variation of an environment interface. For example, Stable-Baselines3 expects the environment to conform to its VecEnv API which expects a list of numpy arrays instead of a single tensor. Similarly, RSL-RL, RL-Games and SKRL expect a different interface. Since there is no one-size-fits-all solution, we do not base the envs.ManagerBasedRLEnv on any particular learning library. Instead, we implement wrappers to convert the environment into the expected interface. These are specified in the omni.isaac.lab_tasks.utils.wrappers module.

In this tutorial, we will use Stable-Baselines3 to train an RL agent to solve the cartpole balancing task.

Caution

Wrapping the environment with the respective learning framework’s wrapper should happen in the end, i.e. after all other wrappers have been applied. This is because the learning framework’s wrapper modifies the interpretation of environment’s APIs which may no longer be compatible with gymnasium.Env.

The Code#

For this tutorial, we use the training script from Stable-Baselines3 workflow in the source/standalone/workflows/sb3 directory.

Code for train.py
  1# Copyright (c) 2022-2024, The Isaac Lab Project Developers.
  2# All rights reserved.
  3#
  4# SPDX-License-Identifier: BSD-3-Clause
  5
  6"""Script to train RL agent with Stable Baselines3.
  7
  8Since Stable-Baselines3 does not support buffers living on GPU directly,
  9we recommend using smaller number of environments. Otherwise,
 10there will be significant overhead in GPU->CPU transfer.
 11"""
 12
 13"""Launch Isaac Sim Simulator first."""
 14
 15import argparse
 16
 17from omni.isaac.lab.app import AppLauncher
 18
 19# add argparse arguments
 20parser = argparse.ArgumentParser(description="Train an RL agent with Stable-Baselines3.")
 21parser.add_argument("--video", action="store_true", default=False, help="Record videos during training.")
 22parser.add_argument("--video_length", type=int, default=200, help="Length of the recorded video (in steps).")
 23parser.add_argument("--video_interval", type=int, default=2000, help="Interval between video recordings (in steps).")
 24parser.add_argument("--cpu", action="store_true", default=False, help="Use CPU pipeline.")
 25parser.add_argument(
 26    "--disable_fabric", action="store_true", default=False, help="Disable fabric and use USD I/O operations."
 27)
 28parser.add_argument("--num_envs", type=int, default=None, help="Number of environments to simulate.")
 29parser.add_argument("--task", type=str, default=None, help="Name of the task.")
 30parser.add_argument("--seed", type=int, default=None, help="Seed used for the environment")
 31parser.add_argument("--max_iterations", type=int, default=None, help="RL Policy training iterations.")
 32# append AppLauncher cli args
 33AppLauncher.add_app_launcher_args(parser)
 34# parse the arguments
 35args_cli = parser.parse_args()
 36# always enable cameras to record video
 37if args_cli.video:
 38    args_cli.enable_cameras = True
 39
 40# launch omniverse app
 41app_launcher = AppLauncher(args_cli)
 42simulation_app = app_launcher.app
 43
 44"""Rest everything follows."""
 45
 46import gymnasium as gym
 47import numpy as np
 48import os
 49from datetime import datetime
 50
 51from stable_baselines3 import PPO
 52from stable_baselines3.common.callbacks import CheckpointCallback
 53from stable_baselines3.common.logger import configure
 54from stable_baselines3.common.vec_env import VecNormalize
 55
 56from omni.isaac.lab.utils.dict import print_dict
 57from omni.isaac.lab.utils.io import dump_pickle, dump_yaml
 58
 59import omni.isaac.lab_tasks  # noqa: F401
 60from omni.isaac.lab_tasks.utils import load_cfg_from_registry, parse_env_cfg
 61from omni.isaac.lab_tasks.utils.wrappers.sb3 import Sb3VecEnvWrapper, process_sb3_cfg
 62
 63
 64def main():
 65    """Train with stable-baselines agent."""
 66    # parse configuration
 67    env_cfg = parse_env_cfg(
 68        args_cli.task, use_gpu=not args_cli.cpu, num_envs=args_cli.num_envs, use_fabric=not args_cli.disable_fabric
 69    )
 70    agent_cfg = load_cfg_from_registry(args_cli.task, "sb3_cfg_entry_point")
 71
 72    # override configuration with command line arguments
 73    if args_cli.seed is not None:
 74        agent_cfg["seed"] = args_cli.seed
 75
 76    # max iterations for training
 77    if args_cli.max_iterations:
 78        agent_cfg["n_timesteps"] = args_cli.max_iterations * agent_cfg["n_steps"] * env_cfg.scene.num_envs
 79
 80    # directory for logging into
 81    log_dir = os.path.join("logs", "sb3", args_cli.task, datetime.now().strftime("%Y-%m-%d_%H-%M-%S"))
 82    # dump the configuration into log-directory
 83    dump_yaml(os.path.join(log_dir, "params", "env.yaml"), env_cfg)
 84    dump_yaml(os.path.join(log_dir, "params", "agent.yaml"), agent_cfg)
 85    dump_pickle(os.path.join(log_dir, "params", "env.pkl"), env_cfg)
 86    dump_pickle(os.path.join(log_dir, "params", "agent.pkl"), agent_cfg)
 87
 88    # post-process agent configuration
 89    agent_cfg = process_sb3_cfg(agent_cfg)
 90    # read configurations about the agent-training
 91    policy_arch = agent_cfg.pop("policy")
 92    n_timesteps = agent_cfg.pop("n_timesteps")
 93
 94    # create isaac environment
 95    env = gym.make(args_cli.task, cfg=env_cfg, render_mode="rgb_array" if args_cli.video else None)
 96    # wrap for video recording
 97    if args_cli.video:
 98        video_kwargs = {
 99            "video_folder": os.path.join(log_dir, "videos"),
100            "step_trigger": lambda step: step % args_cli.video_interval == 0,
101            "video_length": args_cli.video_length,
102            "disable_logger": True,
103        }
104        print("[INFO] Recording videos during training.")
105        print_dict(video_kwargs, nesting=4)
106        env = gym.wrappers.RecordVideo(env, **video_kwargs)
107    # wrap around environment for stable baselines
108    env = Sb3VecEnvWrapper(env)
109    # set the seed
110    env.seed(seed=agent_cfg["seed"])
111
112    if "normalize_input" in agent_cfg:
113        env = VecNormalize(
114            env,
115            training=True,
116            norm_obs="normalize_input" in agent_cfg and agent_cfg.pop("normalize_input"),
117            norm_reward="normalize_value" in agent_cfg and agent_cfg.pop("normalize_value"),
118            clip_obs="clip_obs" in agent_cfg and agent_cfg.pop("clip_obs"),
119            gamma=agent_cfg["gamma"],
120            clip_reward=np.inf,
121        )
122
123    # create agent from stable baselines
124    agent = PPO(policy_arch, env, verbose=1, **agent_cfg)
125    # configure the logger
126    new_logger = configure(log_dir, ["stdout", "tensorboard"])
127    agent.set_logger(new_logger)
128
129    # callbacks for agent
130    checkpoint_callback = CheckpointCallback(save_freq=1000, save_path=log_dir, name_prefix="model", verbose=2)
131    # train the agent
132    agent.learn(total_timesteps=n_timesteps, callback=checkpoint_callback)
133    # save the final model
134    agent.save(os.path.join(log_dir, "model"))
135
136    # close the simulator
137    env.close()
138
139
140if __name__ == "__main__":
141    # run the main function
142    main()
143    # close sim app
144    simulation_app.close()

The Code Explained#

Most of the code above is boilerplate code to create logging directories, saving the parsed configurations, and setting up different Stable-Baselines3 components. For this tutorial, the important part is creating the environment and wrapping it with the Stable-Baselines3 wrapper.

There are three wrappers used in the code above:

  1. gymnasium.wrappers.RecordVideo: This wrapper records a video of the environment and saves it to the specified directory. This is useful for visualizing the agent’s behavior during training.

  2. wrappers.sb3.Sb3VecEnvWrapper: This wrapper converts the environment into a Stable-Baselines3 compatible environment.

  3. stable_baselines3.common.vec_env.VecNormalize: This wrapper normalizes the environment’s observations and rewards.

Each of these wrappers wrap around the previous wrapper by following env = wrapper(env, *args, **kwargs) repeatedly. The final environment is then used to train the agent. For more information on how these wrappers work, please refer to the Wrapping environments documentation.

The Code Execution#

We train a PPO agent from Stable-Baselines3 to solve the cartpole balancing task.

Training the agent#

There are three main ways to train the agent. Each of them has their own advantages and disadvantages. It is up to you to decide which one you prefer based on your use case.

Headless execution#

If the --headless flag is set, the simulation is not rendered during training. This is useful when training on a remote server or when you do not want to see the simulation. Typically, it speeds up the training process since only physics simulation step is performed.

./isaaclab.sh -p source/standalone/workflows/sb3/train.py --task Isaac-Cartpole-v0 --num_envs 64 --headless

Headless execution with off-screen render#

Since the above command does not render the simulation, it is not possible to visualize the agent’s behavior during training. To visualize the agent’s behavior, we pass the --enable_cameras which enables off-screen rendering. Additionally, we pass the flag --video which records a video of the agent’s behavior during training.

./isaaclab.sh -p source/standalone/workflows/sb3/train.py --task Isaac-Cartpole-v0 --num_envs 64 --headless --enable_cameras --video

The videos are saved to the logs/sb3/Isaac-Cartpole-v0/<run-dir>/videos directory. You can open these videos using any video player.

Interactive execution#

While the above two methods are useful for training the agent, they don’t allow you to interact with the simulation to see what is happening. In this case, you can ignore the --headless flag and run the training script as follows:

./isaaclab.sh -p source/standalone/workflows/sb3/train.py --task Isaac-Cartpole-v0 --num_envs 64

This will open the Isaac Sim window and you can see the agent training in the environment. However, this will slow down the training process since the simulation is rendered on the screen. As a workaround, you can switch between different render modes in the "Isaac Lab" window that is docked on the bottom-right corner of the screen. To learn more about these render modes, please check the sim.SimulationContext.RenderMode class.

Viewing the logs#

On a separate terminal, you can monitor the training progress by executing the following command:

# execute from the root directory of the repository
./isaaclab.sh -p -m tensorboard.main --logdir logs/sb3/Isaac-Cartpole-v0

Playing the trained agent#

Once the training is complete, you can visualize the trained agent by executing the following command:

# execute from the root directory of the repository
./isaaclab.sh -p source/standalone/workflows/sb3/play.py --task Isaac-Cartpole-v0 --num_envs 32 --use_last_checkpoint

The above command will load the latest checkpoint from the logs/sb3/Isaac-Cartpole-v0 directory. You can also specify a specific checkpoint by passing the --checkpoint flag.