I want to be able to save figures that were generated during the experiment via the DeepLogger instance. This means that we need to add a function save_plot(fig, ax, fname) to the logger. When calling it for the first time a new figures directory is generated within the experiment logging directory. Note that this directory is also retrieved when generating the experiment report. We can then also save the fnames that were saved with the logger in the meta variables of the generated .hdf5 logger.
I want to be able to save figures that were generated during the experiment via the
DeepLogger
instance. This means that we need to add a functionsave_plot(fig, ax, fname)
to the logger. When calling it for the first time a newfigures
directory is generated within the experiment logging directory. Note that this directory is also retrieved when generating the experiment report. We can then also save the fnames that were saved with the logger in themeta
variables of the generated.hdf5
logger.