Open JLCucumber opened 8 months ago
Never mind, I found the answer in my code 🤡 👈 🤣
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):
! image
Cheers
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 : )