IterationResultResponse

data class IterationResultResponse(val durationMs: String, val evalLoss: Double, val index: Int, val learnRate: Double, val trainingLoss: Double)

Constructors

Link copied to clipboard
fun IterationResultResponse(durationMs: String, evalLoss: Double, index: Int, learnRate: Double, trainingLoss: Double)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Time taken to run the iteration in milliseconds.

Link copied to clipboard

Loss computed on the eval data at the end of iteration.

Link copied to clipboard
val index: Int

Index of the iteration, 0 based.

Link copied to clipboard

Learn rate used for this iteration.

Link copied to clipboard

Loss computed on the training data at the end of iteration.