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
¶
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. |
Source code in fastestimator/fastestimator/summary/summary.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|