Isaac lab RL

I could hardly find any reinforcement learning examples from isaac lab. I wanted to implement a reinforcement learning environment with a robot arm at a specific location (the target ball), but I ran into many problems, such as how to get the coordinates of the taregt ball, how to implement its initialization, reward function, etc

This has all the environments shipped with Isaac Lab:

https://isaac-sim.github.io/IsaacLab/source/features/environments.html

The Lift one with the Frank arm sounds similar to what you want.

Initialization for this task is mostly here:

You can find rewards here:

In the observations.py, you can see how they get the position of an object:

I’m just a user, but my suggestion is to copy the Lift task folder, add to the list of environments and modify as per your task.