You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I'm using SKRL in IsaacLab with a custom network that can't be defined using the usual YAML configuration files used for train.py provided by IsaacLab. I followed the NVIDIA Isaac Lab examples from SKRL to implement this custom setup.
Now, I would like to record videos during training, similar to what the default train.py implementation in IsaacLab uses with flags like --video --video_length 100 --video_interval 10000.
However, when trying to implement video recording similar to that file, I encountered the following error:
Traceback (most recent call last):
...
RuntimeError: Cannot render 'rgb_array' when the simulation render mode is 'NO_GUI_OR_RENDERING'. Please set the simulation render mode to: 'PARTIAL_RENDERING' or 'FULL_RENDERING'. If running headless, make sure --enable_cameras is set.
...
UserWarning: WARN: Ignored saving a video as there were zero frames to save.
logger.warn("Ignored saving a video as there were zero frames to save.")
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm using SKRL in IsaacLab with a custom network that can't be defined using the usual YAML configuration files used for
train.py
provided by IsaacLab. I followed the NVIDIA Isaac Lab examples from SKRL to implement this custom setup.Now, I would like to record videos during training, similar to what the default
train.py
implementation in IsaacLab uses with flags like --video --video_length 100 --video_interval 10000.However, when trying to implement video recording similar to that file, I encountered the following error:
The code I used was the following:
What could be causing this issue? Is there a working example of using video recording with a custom training loop?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions