pytorch/tnt

easy way to save meters and to plot multiple runs of the same axes?

aosokin opened this issue · 1 comments

Hi,

  1. is there an easy way to save meters to disk to plot them later?
  2. is there an easy way to plot multiple runs (with same meters, say when trying hyperparameters) on the same axes?

Thanks!

Hi!

Both of these should be addressed by #88 which I'll accept as a PR later today.

Specifically, for (1) you can use torchnet.utils.ResultsWriter to save results to disk, and for (2) you can use the new name option on the torchnet.logger.VisdomPlotLogger to plot multiple named lines on the same window.