SolutionIntegerHyperParameterRange

data class SolutionIntegerHyperParameterRange(val maxValue: Int? = null, val minValue: Int? = null, val name: String? = null)

Provides the name and range of an integer-valued hyperparameter.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val maxValue: Int? = null

The maximum allowable value for the hyperparameter.

Link copied to clipboard
val minValue: Int? = null

The minimum allowable value for the hyperparameter.

Link copied to clipboard
val name: String? = null

The name of the hyperparameter.