Enum StatAggregationMethod
Determines the behavior of how multiple stats within the same summary period are combined.
Namespace: Unity.MLAgents
Syntax
public enum StatAggregationMethod
Fields
| Name | Description | Value |
|---|---|---|
| Average | Values within the summary period are averaged before reporting. |
0 |
| MostRecent | Only the most recent value is reported. To avoid conflicts when training with multiple concurrent environments, only stats from worker index 0 will be tracked. |
1 |
| Sum | Values within the summary period are summed up before reporting. |
2 |
| Histogram | Values within the summary period are reported as a histogram. |
3 |