Class/Object

io.github.mandar2812.dynaml.modelpipe

GPRegressionPipe

Related Docs: object GPRegressionPipe | package modelpipe

Permalink

class GPRegressionPipe[Source, IndexSet] extends ModelPipe[Source, Seq[(IndexSet, Double)], IndexSet, Double, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]]

GP Pipes

A data pipe which can spawn a Gaussian Process regression model from a provided training data set.

Source

Input data type

IndexSet

Type of features of each data pattern

Linear Supertypes
ModelPipe[Source, Seq[(IndexSet, Double)], IndexSet, Double, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]], DataPipe[Source, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]], Serializable, Serializable, DataPipeConvertible[Source, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GPRegressionPipe
  2. ModelPipe
  3. DataPipe
  4. Serializable
  5. Serializable
  6. DataPipeConvertible
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GPRegressionPipe(pre: (Source) ⇒ Seq[(IndexSet, Double)], cov: LocalScalarKernel[IndexSet], n: LocalScalarKernel[IndexSet], order: Int = 0, ex: Int = 0, meanFunc: DataPipe[IndexSet, Double] = DataPipe((_: IndexSet) => 0.0))(implicit arg0: ClassTag[IndexSet])

    Permalink

    pre

    A function which converts the input data into a scala Seq of IndexSet and Double pairs.

    cov

    The covariance function of the resultant GP, as an instance of LocalScalarKernel defined on the IndexSet type.

    n

    The measurement noise of the output signal/data, also as in instance of LocalScalarKernel

    order

    Size of the auto-regressive time lag of the output signal that is used to create the training data. Ignore if not working with GP-NAR or GP-NARX models.

    ex

    Size of the auto-regressive time lag of the exogenous inputs that is used to create the training data. Ignore if not working with GP-NARX models.

    meanFunc

    The trend function of the resulting GP model, as an instance of DataPipe.

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def %>(that: Basis[AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]]): Basis[Source]

    Permalink
    Definition Classes
    DataPipe
  4. def *[OtherSource, OtherDestination](that: DataPipe[OtherSource, OtherDestination]): ParallelPipe[Source, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet], OtherSource, OtherDestination]

    Permalink
    Definition Classes
    DataPipe
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def >[Further](that: DataPipeConvertible[AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet], Further]): DataPipe[Source, Further]

    Permalink
    Definition Classes
    DataPipe
  7. def >-<[OtherSource, OtherDestination](that: DataPipe[OtherSource, OtherDestination]): DataPipe2[Source, OtherSource, (AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet], OtherDestination)]

    Permalink
    Definition Classes
    DataPipe
  8. def apply[T <: Traversable[Source]](data: T): T

    Permalink
    Definition Classes
    DataPipe
  9. def apply(data: Source): AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]

    Permalink
    Definition Classes
    DataPipe
  10. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. val preProcess: (Source) ⇒ Seq[(IndexSet, Double)]

    Permalink
    Definition Classes
    GPRegressionPipeModelPipe
  22. def run(data: Source): AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]

    Permalink
    Definition Classes
    GPRegressionPipeModelPipe → DataPipe
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toPipe: (Source) ⇒ AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]

    Permalink
    Definition Classes
    DataPipe → DataPipeConvertible
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. implicit val transform: DataPipe[Seq[(IndexSet, Double)], Seq[(IndexSet, Double)]]

    Permalink
  27. final def wait(): Unit

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

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

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

Inherited from ModelPipe[Source, Seq[(IndexSet, Double)], IndexSet, Double, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]]

Inherited from DataPipe[Source, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]]

Inherited from Serializable

Inherited from Serializable

Inherited from DataPipeConvertible[Source, AbstractGPRegressionModel[Seq[(IndexSet, Double)], IndexSet]]

Inherited from AnyRef

Inherited from Any

Ungrouped