Hello,
I want to be able to see other metrics in the Hparam tab of tensorboard. I know that I can get the best score by using checkpoint_callback.best_model_score
after training. how do I get other metrics at the best epoch?
as a suggestion it could be useful to connect the checkpoint callback to the logger callback somehow so so when saving the checkpoint moment the checkpoint callback adds previously specified metrics to the logger using for example logger.log_hyparparams
function.