results¶
-
class
NumericResult(*args, **kwargs)[source]¶ Bases:
pimlico.datatypes.base.PimlicoDatatypeSimple datatype to contain a numeric value and a label, representing the result of some process, such as evaluation of a model on a task.
Write using
writer.write(label, value). The label must be a string, identifying what the result is, e.g. “f-score”. The value can be any JSON-serializable type, e.g. int or float.For example, allows results to be plotted by passing them into a graph plotting module.
-
datatype_name= 'numeric_result'¶
-
datatype_supports_python2= True¶
-
class
Reader(datatype, setup, pipeline, module=None)[source]¶ Bases:
pimlico.datatypes.base.ReaderReader class for NumericResult
-
class
Setup(datatype, data_paths)[source]¶ Bases:
pimlico.datatypes.base.SetupSetup class for NumericResult.Reader
-
get_required_paths()[source]¶ May be overridden by subclasses to provide a list of paths (absolute, or relative to the data dir) that must exist for the data to be considered ready.
-
reader_type¶ alias of
NumericResult.Reader
-
-
data¶
-
label¶
-
value¶
-
class
-