summary
Summary
¶
A summary object that records training history.
This class is intentionally not @traceable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
Optional[str]
|
Name of the experiment. If None then experiment results will be ignored. |
required |
system_config |
Optional[List[FeSummaryTable]]
|
A description of the initialization parameters defining the estimator associated with this experiment. |
None
|
Source code in fastestimator\fastestimator\summary\summary.py
ValWithError
¶
Bases: NamedTuple
A class to record values with error bars (for special visualization in the logger).
Source code in fastestimator\fastestimator\summary\summary.py
average_summaries
¶
Average multiple summaries together, storing their metric means +- stdevs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The name for the new summary. |
required |
summaries |
List[Summary]
|
A list of summaries to be averaged. |
required |
Returns:
Type | Description |
---|---|
Summary
|
A single summary object reporting mean+-stddev for each metric. If a particular value has only 1 datapoint, it |
Summary
|
will not be averaged. |