| | |
| | |
| | |
| | |
| |
|
| | """ |
| | This script demonstrates policy inference in a prebuilt USD environment. |
| | |
| | In this example, we use a locomotion policy to control the H1 robot. The robot was trained |
| | using Isaac-Velocity-Rough-H1-v0. The robot is commanded to move forward at a constant velocity. |
| | |
| | .. code-block:: bash |
| | |
| | # Run the script |
| | ./isaaclab.sh -p scripts/tutorials/03_envs/policy_inference_in_usd.py --checkpoint /path/to/jit/checkpoint.pt |
| | |
| | """ |
| |
|
| | """Launch Isaac Sim Simulator first.""" |
| |
|
| |
|
| | import argparse |
| |
|
| | from isaaclab.app import AppLauncher |
| |
|
| | |
| | parser = argparse.ArgumentParser(description="Tutorial on inferencing a policy on an H1 robot in a warehouse.") |
| | parser.add_argument("--checkpoint", type=str, help="Path to model checkpoint exported as jit.", required=True) |
| |
|
| | |
| | AppLauncher.add_app_launcher_args(parser) |
| | |
| | args_cli = parser.parse_args() |
| |
|
| | |
| | app_launcher = AppLauncher(args_cli) |
| | simulation_app = app_launcher.app |
| |
|
| | """Rest everything follows.""" |
| | import io |
| | import os |
| |
|
| | import torch |
| |
|
| | import omni |
| |
|
| | from isaaclab.envs import ManagerBasedRLEnv |
| | from isaaclab.terrains import TerrainImporterCfg |
| | from isaaclab.utils.assets import ISAAC_NUCLEUS_DIR |
| |
|
| | from isaaclab_tasks.manager_based.locomotion.velocity.config.h1.rough_env_cfg import H1RoughEnvCfg_PLAY |
| |
|
| |
|
| | def main(): |
| | """Main function.""" |
| | |
| | policy_path = os.path.abspath(args_cli.checkpoint) |
| | file_content = omni.client.read_file(policy_path)[2] |
| | file = io.BytesIO(memoryview(file_content).tobytes()) |
| | policy = torch.jit.load(file, map_location=args_cli.device) |
| |
|
| | |
| | env_cfg = H1RoughEnvCfg_PLAY() |
| | env_cfg.scene.num_envs = 1 |
| | env_cfg.curriculum = None |
| | env_cfg.scene.terrain = TerrainImporterCfg( |
| | prim_path="/World/ground", |
| | terrain_type="usd", |
| | usd_path=f"{ISAAC_NUCLEUS_DIR}/Environments/Simple_Warehouse/warehouse.usd", |
| | ) |
| | env_cfg.sim.device = args_cli.device |
| | if args_cli.device == "cpu": |
| | env_cfg.sim.use_fabric = False |
| |
|
| | |
| | env = ManagerBasedRLEnv(cfg=env_cfg) |
| |
|
| | |
| | obs, _ = env.reset() |
| | with torch.inference_mode(): |
| | while simulation_app.is_running(): |
| | action = policy(obs["policy"]) |
| | obs, _, _, _, _ = env.step(action) |
| |
|
| |
|
| | if __name__ == "__main__": |
| | main() |
| | simulation_app.close() |
| |
|