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
I am using legged_gym currently for legged robots training. I noticed that this package rsl_rl has been updated to 2.0 version while the required version for legged_gym is v1.0.2. I wonder if it is available to adopt this 2.0 version to my legged gym without potential problems, since I find myself in need of the newly-added tensorboard to view the trainning performance.
I am new to tensorboard and rl coding, so I'm afraid manually adding a tensorboard by myself to my original code may result in some problems. Thank you for your help : )
The text was updated successfully, but these errors were encountered:
A tensorboard tool for viewing my training results is already available in rsl_rl v1.0.2. It is located in rsl_rl/runners/on_policy_runner.py and is a bunch of code blocks with self.writer.add_scalar. After each training session, this particular file is saved to the exact location of the trained model, usually legged_gym/logs/[your task name]/[your model timestamp].
Here's how to use it (for my task):
cd /home/jlcucumber/nvidia/legged_gym/logs/dogzilla/
tensorboard --logdir ". /Mar03_17-18-24_"
Then it will show the check link and hopefully you will see something like this:
Hi,
I am using legged_gym currently for legged robots training. I noticed that this package rsl_rl has been updated to 2.0 version while the required version for legged_gym is v1.0.2. I wonder if it is available to adopt this 2.0 version to my legged gym without potential problems, since I find myself in need of the newly-added tensorboard to view the trainning performance.
I am new to tensorboard and rl coding, so I'm afraid manually adding a tensorboard by myself to my original code may result in some problems. Thank you for your help : )
The text was updated successfully, but these errors were encountered: