How can I add the rewards to tensorboard logging in Stable Baselines3 using a custom environment?
I have this learning code
model = PPO(
"MlpPolicy", env,
learning_rate=1e-4,
policy_kwargs=policy_kwargs,
verbose=1,
tensorboard_log="./tensorboard/")