dacapo.store.file_stats_store

Module Contents

Classes

FileStatsStore

A File based store for run statistics. Used to store and retrieve training

Attributes

logger

dacapo.store.file_stats_store.logger
class dacapo.store.file_stats_store.FileStatsStore(path)

A File based store for run statistics. Used to store and retrieve training statistics and validation scores.

store_training_stats(run_name, stats)

Store training stats of a given run.

retrieve_training_stats(run_name)

Retrieve the training stats for a given run.

store_validation_iteration_scores(run_name, scores)

Store the validation iteration scores of a given run.

retrieve_validation_iteration_scores(run_name)

Retrieve the validation iteration scores for a given run.

delete_training_stats(run_name: str) None