object HyperParamUtils

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HyperParamUtils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def getDiscreteHyperParam(values: ArrayList[_], seed: Long = 0): DiscreteHyperParam[_]

    Returns a discrete hyper param given a Java ArrayList through JavaConversions.

    Returns a discrete hyper param given a Java ArrayList through JavaConversions.

    values

    The list of values from Java.

    seed

    The random number seed.

    returns

    A RangeHyperParam matched to the given type for min and max values.

  2. def getRangeHyperParam(min: Any, max: Any, seed: Long = 0): RangeHyperParam[_]

    Returns a range hyper param by matching to the given input type.

    Returns a range hyper param by matching to the given input type.

    min

    The min value of the range

    max

    The max value of the range

    seed

    The random number seed.

    returns

    A RangeHyperParam matched to the given type for min and max values.