I am trying to use TensorBoard to save some analysis and I am trying to plot the relationship between two variables, i.e. x and y...
But using:
logger.writer.add_scalar("test", 40, 0.1)
logger.writer.add_scalar("test", 80, 0.2)
So it seems like we are overwriting the same value, and the step is fixed to 0. If there is a way to plot two variables directly to TensorBoard, as opposed to saving a matplotlib figure in TensorBoard I would love to hear more!