EpochTrainingEvent

fun EpochTrainingEvent(epochIndex: Int, lossValue: Double, metricValue: Double, valLossValue: Double?, valMetricValue: Double?)

Creates EpochTrainingEvent from epochIndex, lossValue, metricValue, valLossValue, valMetricValue.

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.