dacapo.experiments.training_iteration_stats

Classes

TrainingIterationStats

A class to represent the training iteration statistics. It contains the loss and time taken for each iteration.

Module Contents

class dacapo.experiments.training_iteration_stats.TrainingIterationStats

A class to represent the training iteration statistics. It contains the loss and time taken for each iteration.

iteration

The iteration that produced these stats.

Type:

int

loss

The loss value of this iteration.

Type:

float

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.

iteration: int
loss: float
time: float