SqueezeBrains SDK 1.18
|
Results of a training epoch. More...
#include <sb.h>
Data Fields | |
float | loss |
SVL loss. More... | |
float | validation_loss |
SVL validation loss. More... | |
sb_t_metrics | metrics |
SVL metrics. More... | |
sb_t_metrics | validation_metrics |
SVL validation metrics. More... | |
Results of a training epoch.
Used only by Deep Surface and Deep Cortex projects.
float sb_t_svl_res_epoch::loss |
SVL loss.
Average batch training loss of the epoch.
It is a measure of the error between predictions and ground truth values on training images at the end of an epoch.
The value is available only in global results.
sb_t_metrics sb_t_svl_res_epoch::metrics |
SVL metrics.
SVL metrics of the epoch. All the metrics are computed by a weighted average of all the batch metrics in the epoch.
float sb_t_svl_res_epoch::validation_loss |
SVL validation loss.
Average batch validation loss of the epoch.
It is a measure of the error between predictions and ground truth values on validation images at the end of an epoch. If sb_t_svl_dl_par::validation_percentage = 0, it is equal to zero.
The value is available only in global results.
sb_t_metrics sb_t_svl_res_epoch::validation_metrics |
SVL validation metrics.
SVL validation metrics of the epoch. All the metrics are computed by a weighted average of all validation batch metrics in the epoch.
If sb_t_svl_dl_par::validation_percentage = 0, all the metrics are equal to -SB_VALUE_NOT_SET .