BatchTrainingEvent
class BatchTrainingEvent(epochIndex: Int, batchIndex: Int, lossValue: Double, metricValues: List<Double>)
Content copied to clipboard
One record in TrainingHistory objects containing tracked data from one batch in the specific epoch.
Parameters
epochIndex
Batch index.
batchIndex
Batch index.
lossValue
Final value of loss function.
metricValues
Final value of chosen metric.
Constructors
BatchTrainingEvent
Link copied to clipboard
fun BatchTrainingEvent(epochIndex: Int, batchIndex: Int, lossValue: Double, metricValues: List<Double>)
Content copied to clipboard
Creates BatchTrainingEvent from epochIndex, batchIndex, lossValue, metricValues.
Functions
Properties
batchIndex
Link copied to clipboard
epochIndex
Link copied to clipboard
metricValues
Link copied to clipboard