Trait

io.github.mandar2812.dynaml.models

ParameterizedLearner

Related Doc: package models

Permalink

trait ParameterizedLearner[G, T, Q, R, S] extends Model[G, Q, R]

Skeleton of Parameterized Model

G

The type of the underlying data.

T

The type of the parameters

Q

A Vector/Matrix representing the features of a point

R

The type of the output of the predictive model i.e. A Real Number or a Vector of outputs.

S

The type of the edge containing the features and label.

Linear Supertypes
Model[G, Q, R], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParameterizedLearner
  2. Model
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val g: G

    Permalink

    The training data

    The training data

    Attributes
    protected
    Definition Classes
    Model
  2. abstract def initParams(): T

    Permalink
  3. abstract def learn(): Unit

    Permalink

    Learn the parameters of the model.

  4. abstract val optimizer: RegularizedOptimizer[T, Q, R, S]

    Permalink
    Attributes
    protected
  5. abstract val params: T

    Permalink
    Attributes
    protected
  6. abstract def predict(point: Q): R

    Permalink

    Predict the value of the target variable given a point.

    Predict the value of the target variable given a point.

    Definition Classes
    Model

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def data: G

    Permalink
    Definition Classes
    Model
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. def parameters(): T

    Permalink

    Get the value of the parameters of the model.

  17. def setBatchFraction(f: Double): ParameterizedLearner.this.type

    Permalink
  18. def setLearningRate(alpha: Double): ParameterizedLearner.this.type

    Permalink
  19. def setMaxIterations(i: Int): ParameterizedLearner.this.type

    Permalink
  20. def setRegParam(r: Double): ParameterizedLearner.this.type

    Permalink
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. def updateParameters(param: T): Unit

    Permalink
  24. final def wait(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Model[G, Q, R]

Inherited from AnyRef

Inherited from Any

Ungrouped