Package org.jetbrains.kotlinx.dl.api.core.history

Types

BatchEvent
Link copied to clipboard
class BatchEvent(batchIndex: Int, lossValue: Double, metricValue: Double)

One record in History objects containing tracked data from one batch.

BatchTrainingEvent
Link copied to clipboard
class BatchTrainingEvent(epochIndex: Int, batchIndex: Int, lossValue: Double, metricValue: Double)

One record in TrainingHistory objects containing tracked data from one batch in the specific epoch.

EpochTrainingEvent
Link copied to clipboard
class EpochTrainingEvent(epochIndex: Int, lossValue: Double, metricValue: Double, valLossValue: Double?, valMetricValue: Double?)

One record in TrainingHistory objects containing tracked data from one epoch.

History
Link copied to clipboard
class History

Contains all recorded batch events as a list of BatchEvent objects.

TrainingHistory
Link copied to clipboard
class TrainingHistory

Contains all recorded batch events as a list of BatchTrainingEvent objects and epoch events as a list of EpochTrainingEvent objects.