Class

io.github.mandar2812.dynaml.models.ensemble

MetaModel

Related Doc: package ensemble

Permalink

abstract class MetaModel[D, D1, BaseModel <: Model[D1, DenseVector[Double], Double], Pipe <: ModelPipe[D, D1, DenseVector[Double], Double, BaseModel]] extends Model[D, DenseVector[Double], Double]

Defines the basic skeleton of a "meta-model" or a model of models.

A set of base models are trained on sub-sampled versions of the training data set and finally a predictor of the form.

y(x) = f(y1(x), y2(x), ..., yb(x))

Where f is some combination function and b is the number of base models used.

D

The type of the data structure containing the training data set.

D1

The type of data structure containing the data of the base models.

BaseModel

The type of model used as base model for the meta model. example: FeedForwardNetwork, GPRegression, etc

Pipe

A sub-type of ModelPipe which yields a BaseModel with D1 as the base data structure given a data structure of type D

Linear Supertypes
Model[D, DenseVector[Double], Double], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MetaModel
  2. Model
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MetaModel(num: Long, data: D, networks: Pipe*)

    Permalink

    num

    The number of training data points.

    data

    The actual training data

    networks

    A sequence of Pipe objects yielding BaseModel

Abstract Value Members

  1. abstract def predict(point: DenseVector[Double]): Double

    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. val baseNetworks: List[BaseModel]

    Permalink
  6. def clone(): AnyRef

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. val g: D

    Permalink

    The training data

    The training data

    Attributes
    protected
    Definition Classes
    MetaModelModel
  12. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

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

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

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

Inherited from Model[D, DenseVector[Double], Double]

Inherited from AnyRef

Inherited from Any

Ungrouped