BatchTrainingEvent

class BatchTrainingEvent(epochIndex: Int, batchIndex: Int, lossValue: Double, metricValues: List<Double>)

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>)

Functions

toString
Link copied to clipboard
open override fun toString(): String

Properties

batchIndex
Link copied to clipboard
val batchIndex: Int
epochIndex
Link copied to clipboard
val epochIndex: Int
lossValue
Link copied to clipboard
val lossValue: Double
metricValues
Link copied to clipboard
val metricValues: List<Double>