← Experiments
Isaac Sim: RL navigation in a toy warehouse
December 15, 2025
isaacsimroboticsreinforcement-learning
This page exists as a reference template for new experiments.
Video
Use a YouTube link (the component converts it into an embed).
Chart
Loading chart…
Diagram (React Flow)
Loading diagram…
Code snippet
def compute_reward(progress: float, collision: bool) -> float:
reward = progress
if collision:
reward -= 1.0
return reward