I am using Skorch.
I created a new score logging using the EpochScoring callback.
While it appears on the history log, It doesn't show on TensorBoard (I am using the TensorBoard callback).
Is there a way to make the TensorBoard logger be aware of that key?
I know I can do a manual callback, but I wonder if there's a simple way to get the logger save an existing key from history.
It is possible that the call order matters in this case. Since both callbacks are doing their work on the end of the epoch the
TensorBoardcallback only has access to those keys in the history that were written at time of execution.Your callback list for the net should therefore look like this:
If it was the other way around the new score would not be written.