Source code for vivarium.framework.metrics

"""
==============
Output Metrics
==============

Currently, ``vivarium`` uses the :ref:`values pipeline system <values_concept>`
to produce the results, or output metrics, from a simulation.  The metrics
The component here is a normal ``vivarium`` component whose only purpose is
to provide an empty :class:`dict` as the source of the *"Metrics"* pipeline.
It is included by default in all simulations.
"""


[docs]class Metrics: """This class declares a value pipeline that allows other components to store summary metrics.""" @property def name(self): return "metrics"
[docs] def setup(self, builder): self.metrics = builder.value.register_value_producer( "metrics", source=lambda index: {} )
def __repr__(self): return "Metrics()"