TrainingResult

data class TrainingResult(val epochs: Int, val finalLoss: Float)(source)

Result from a training run.

Parameters

epochs

Number of epochs completed.

finalLoss

The loss value from the final training step.

Constructors

Link copied to clipboard
constructor(epochs: Int, finalLoss: Float)

Properties

Link copied to clipboard
val epochs: Int
Link copied to clipboard