EpochTrainingEvent
class EpochTrainingEvent(epochIndex: Int, lossValue: Double, metricValues: List<Double>, valLossValue: Double?, valMetricValues: List<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.
metricValues
Values of metric function on training dataset.
valLossValue
Value of loss function on validation dataset. Could be null, if validation phase is missed.
valMetricValues
Values 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, metricValues: List<Double>, valLossValue: Double?, valMetricValues: List<Double?>?)
Content copied to clipboard
Creates EpochTrainingEvent from epochIndex, lossValue, metricValues, valLossValue, valMetricValues.
Functions
Properties
epochIndex
Link copied to clipboard
metricValues
Link copied to clipboard
valLossValue
Link copied to clipboard
valMetricValues
Link copied to clipboard