data class BqmlIterationResultArgs(val durationMs: Output<String>? = null, val evalLoss: Output<Double>? = null, val index: Output<Int>? = null, val learnRate: Output<Double>? = null, val trainingLoss: Output<Double>? = null) : ConvertibleToJava<BqmlIterationResultArgs>
Output-only, Beta Eval loss computed on the eval data at the end of the iteration. The eval loss is used for early stopping to avoid overfitting. No eval loss if eval_split_method option is specified as no_split or auto_split with input data size less than 500 rows.