Model design: IsaacLab application #230
Replies: 1 comment 6 replies
-
Because your observation is returned as a dictionary (in E.g.:
observation_space = {
"robot-state": 12,
"camera": [scene.camera.width, scene.camera.height, num_channels],
}
observation_space = gym.spaces.Dict({
"robot-state": gym.spaces.Box(float("-inf"), float("inf"), shape=(12,)),
"camera": gym.spaces.Box(float("-inf"), float("inf"), shape=(scene.camera.width, scene.camera.height, num_channels)),
}) Btw, what |
Beta Was this translation helpful? Give feedback.
-
Hi,
I was going through the documentation for model design and was wondering what I was doing wrong with the following model:
My other application works fine, but for this particular model, where a CNN captures the image returned by a camera fixed on a drone and then concatenates the result with the robot's intrinsic values before passing it to an MLP, I am encountering an error when using the Jax framework:
And my observation space is designed as follow :
I'm surely missing something. I started using IsaacLab a month ago and I'm not familiar with it, nor with SKRL. I have just defined the observation space and action space as follows:
Beta Was this translation helpful? Give feedback.
All reactions