I am using clearml for testing algorithms and it works well with library Stable Baselines 3, in which clearml automatically captures all the output and plot them in the Scalars tab.
However, when I switched to another library PFRL clearml no longer output anything to the Scalar tab. After looking into the code I found PFRL outputs statistics using logger.info
, which seemed to be the reason of empty Scalars tab (but there was output in the Console tab).
I am wondering is there any method that I can make clearml automatically collect them into the Scalars tab.
Thanks in advance!
You can use the task logger to report these statistics using the
task.logger
property. See the scalars reporting example for a code sample on how to do this.