dacapo.experiments.validation_iteration_scores

Classes

ValidationIterationScores

A class used to represent the validation iteration scores in an organized structure.

Module Contents

class dacapo.experiments.validation_iteration_scores.ValidationIterationScores

A class used to represent the validation iteration scores in an organized structure.

iteration

The iteration associated with these validation scores.

Type:

int

scores

A list of scores per dataset, post processor

Type:

List[List[List[float]]]

parameters, and evaluation criterion.

Note

The scores list is structured as follows: - The outer list contains the scores for each dataset. - The middle list contains the scores for each post processor parameter. - The inner list contains the scores for each evaluation criterion.

iteration: int
scores: List[List[List[float]]]