EpochTrainingEvent
class EpochTrainingEvent(epochIndex: Int, lossValue: Double, metricValue: Double, valLossValue: Double?, valMetricValue: Double?)
Content copied to clipboard
One record in TrainingHistory objects containing tracked data from one epoch.
Parameters
epochIndex
Batch index.
lossValue
Value of loss function on training dataset.
metricValue
Value of metric function on training dataset.
valLossValue
Value of loss function on validation dataset. Could be null, if validation phase is missed.
valMetricValue
Value of metric function on validation dataset. Could be null, if validation phase is missed.
Constructors
EpochTrainingEvent
Link copied to clipboard
fun EpochTrainingEvent(epochIndex: Int, lossValue: Double, metricValue: Double, valLossValue: Double?, valMetricValue: Double?)
Content copied to clipboard
Creates EpochTrainingEvent from epochIndex, lossValue, metricValue, valLossValue, valMetricValue.
Functions
Properties
epochIndex
Link copied to clipboard
metricValue
Link copied to clipboard
valLossValue
Link copied to clipboard
valMetricValue
Link copied to clipboard