MedianStoppingPolicyArgs

data class MedianStoppingPolicyArgs(val delayEvaluation: Output<Int>? = null, val evaluationInterval: Output<Int>? = null, val policyType: Output<String>) : ConvertibleToJava<MedianStoppingPolicyArgs>

Defines an early termination policy based on running averages of the primary metric of all runs

Constructors

Link copied to clipboard
constructor(delayEvaluation: Output<Int>? = null, evaluationInterval: Output<Int>? = null, policyType: Output<String>)

Properties

Link copied to clipboard
val delayEvaluation: Output<Int>? = null

Number of intervals by which to delay the first evaluation.

Link copied to clipboard
val evaluationInterval: Output<Int>? = null

Interval (number of runs) between policy evaluations.

Link copied to clipboard
val policyType: Output<String>

Expected value is 'MedianStopping'.

Functions

Link copied to clipboard
open override fun toJava(): MedianStoppingPolicyArgs