-
Beta Was this translation helpful? Give feedback.
Answered by
Mayankm96
Apr 8, 2024
Replies: 1 comment
-
I suppose the main question is whether one can have their logs added to the tensorboard monitor using Stable-Baselines3. I am not 100% sure if this is directly supported by SB3 (i.e. it automatically logs all the signals in the episode dictionary). It seems to have the functionality to record some things readily to the logger:
To log those additional quantities, I think you'll need to implement your own callback that calls the logger to record them as well. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Corvin-N
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I suppose the main question is whether one can have their logs added to the tensorboard monitor using Stable-Baselines3.
I am not 100% sure if this is directly supported by SB3 (i.e. it automatically logs all the signals in the episode dictionary). It seems to have the functionality to record some things readily to the logger:
To log those additional quantities, I think you'll need to implement your own callback that calls the logger to record them as well.