SolutionContinuousHyperParameterRange

data class SolutionContinuousHyperParameterRange(val maxValue: Double? = null, val minValue: Double? = null, val name: String? = null)

Provides the name and range of a continuous hyperparameter.

Constructors

Link copied to clipboard
constructor(maxValue: Double? = null, minValue: Double? = null, name: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val maxValue: Double? = null

The maximum allowable value for the hyperparameter.

Link copied to clipboard
val minValue: Double? = null

The minimum allowable value for the hyperparameter.

Link copied to clipboard
val name: String? = null

The name of the hyperparameter.