Questionnaire: "runner.py" can't support "PPO_RNN"? #276
-
Hi @Toni-SM, I want to train PPO with LSTM model on Isaac Sim + Isaac Lab, but it may not support PPO with RNN. I am using skrl version 1.3.0. In "utils/runner/torch/runner.py" it can't provide PPO_RNN If I want to use PPO_RNN with Isaac Lab and a yaml file, do I need to make a wrapper for runner? Or, implementing local agents is better than using "runner.py"? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @cold-young Currently For RNN, you can refer to skrl docs examples for Gymnasium / Gym environments and copy the Model implementation to your custom scripts. |
Beta Was this translation helpful? Give feedback.
Hi @cold-young
Currently
yaml
configuration integrated Isaac Lab for skrl doesn't support RNN (there is a plan to support in next skrl releases).However, you can use skrl's standalone script to train/evaluate on Isaac Lab as shown in skrl docs examples for NVIDIA Isaac Lab).
For RNN, you can refer to skrl docs examples for Gymnasium / Gym environments and copy the Model implementation to your custom scripts.