dacapo.experiments.training_iteration_stats =========================================== .. py:module:: dacapo.experiments.training_iteration_stats Classes ------- .. autoapisummary:: dacapo.experiments.training_iteration_stats.TrainingIterationStats Module Contents --------------- .. py:class:: TrainingIterationStats A class to represent the training iteration statistics. It contains the loss and time taken for each iteration. .. attribute:: iteration The iteration that produced these stats. :type: int .. attribute:: loss The loss value of this iteration. :type: float .. attribute:: time The time it took to process this iteration. :type: float .. note:: The iteration stats list is structured as follows: - The outer list contains the stats for each iteration. - The inner list contains the stats for each training iteration. .. py:attribute:: iteration :type: int .. py:attribute:: loss :type: float .. py:attribute:: time :type: float