Packages

c

scalation.analytics

HyperParameter

class HyperParameter extends Cloneable

The HyperParameter class provides a simple and flexible means for handling model hyper-parameters. A model may have one or more hyper-parameters that are organized into a map 'name -> (value, defaultV)'.

Linear Supertypes
Cloneable, Cloneable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HyperParameter
  2. Cloneable
  3. Cloneable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HyperParameter()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(hp2: HyperParameter): HyperParameter

    Concatenate 'this' hyper-parameter map with a second hyper-parameter map.

    Concatenate 'this' hyper-parameter map with a second hyper-parameter map.

    hp2

    the second hyper-parameter map

  4. def +=(name: String, value: Double, defaultV: Double): Unit

    Add a new hyper-parameter to the map.

    Add a new hyper-parameter to the map.

    name

    the name of the hyper-parameter

    value

    the value of the hyper-parameter

    defaultV

    the defualt value of the hyper-parameter

  5. def -=(name: String): Unit

    Remove the hyper-parameter with the given name from the map.

    Remove the hyper-parameter with the given name from the map.

    name

    the name of the hyper-parameter

  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def apply(name: String): Double

    Given the 'name', return the hyper-parameter value.

    Given the 'name', return the hyper-parameter value.

    name

    the name of the hyper-parameter

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  10. def default(name: String): Double

    Given the 'name', return the hyper-parameter default value.

    Given the 'name', return the hyper-parameter default value.

    name

    the name of the hyper-parameter

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String

    Convert the hyper-parameter map to a string.

    Convert the hyper-parameter map to a string.

    Definition Classes
    HyperParameter → AnyRef → Any
  21. def update(name: String, value: Double): Unit

    Given the 'name', update the hyper-parameter value.

    Given the 'name', update the hyper-parameter value.

    name

    the name of the hyper-parameter

    value

    the value of the hyper-parameter

  22. def updateDefault(name: String, defaultV: Double): Unit

    Given the 'name', update the hyper-parameter default value.

    Given the 'name', update the hyper-parameter default value.

    name

    the name of the hyper-parameter

    defaultV

    the defualt value of the hyper-parameter

  23. def updateReturn(nvs: (String, Double)*): HyperParameter

    Create and return a new set of hyper-parameters, updating the one with the given 'name'.

    Create and return a new set of hyper-parameters, updating the one with the given 'name'.

    nvs

    the name-value pair for the hyper-parameter

  24. def updateReturn(name: String, value: Double): HyperParameter

    Create and return a new set of hyper-parameters, updating the one with the given 'name'.

    Create and return a new set of hyper-parameters, updating the one with the given 'name'.

    name

    the name of the hyper-parameter

    value

    the value of the hyper-parameter

  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Cloneable

Inherited from Cloneable

Inherited from AnyRef

Inherited from Any

Ungrouped