Class

com.alpine.model.pack.multiple

GroupByRegressionTransformer

Related Doc: package multiple

Permalink

case class GroupByRegressionTransformer(model: GroupByRegressionModel) extends RegressionTransformer with GroupByTransformer[RegressionRowModel] with Product with Serializable

Linear Supertypes
Product, Equals, GroupByTransformer[RegressionRowModel], RegressionTransformer, MLTransformer[RealResult], Transformer, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GroupByRegressionTransformer
  2. Product
  3. Equals
  4. GroupByTransformer
  5. RegressionTransformer
  6. MLTransformer
  7. Transformer
  8. Serializable
  9. Serializable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GroupByRegressionTransformer(model: GroupByRegressionModel)

    Permalink

Type Members

  1. type Row = Seq[Any]

    Permalink

    Shorthand for the input / output type of the apply method.

    Shorthand for the input / output type of the apply method. Equivalent to Seq[Any].

    Definition Classes
    Transformer

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. def allowNullValues: Boolean

    Permalink

    Allows the transformer to specify if the apply method can handle null values in the input row.

    Allows the transformer to specify if the apply method can handle null values in the input row.

    e.g. a Null value replacement transformer, or a Naive Bayes transformer would naturally handle null values, but a Linear Regression transformer would not.

    Default value is false.

    returns

    Boolean indicating tolerance for null values in input.

    Definition Classes
    Transformer
  5. def apply(row: Row): Row

    Permalink

    This method should be implemented with speed and garbage collection in mind, as it called once per row on potentially huge data-sets.

    This method should be implemented with speed and garbage collection in mind, as it called once per row on potentially huge data-sets.

    This method is not required to be thread-safe.

    row

    The row of input to be scored.

    returns

    The result from applying the trained model to the row.

    Definition Classes
    RegressionTransformerTransformer
  6. final def asInstanceOf[T0]: T0

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

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

    Permalink
    Definition Classes
    AnyRef
  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. lazy val getGroupByValue: (Any) ⇒ Any

    Permalink
    Definition Classes
    GroupByTransformer
  12. def indicesToUse(subModel: RegressionRowModel): Array[Int]

    Permalink
    Definition Classes
    GroupByTransformer
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. val model: GroupByRegressionModel

    Permalink
  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. def predict(row: Row): Double

    Permalink
  19. def score(row: Row): RealResult

    Permalink
    Definition Classes
    RegressionTransformerMLTransformer
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. final def wait(): Unit

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

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

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

Inherited from Product

Inherited from Equals

Inherited from RegressionTransformer

Inherited from MLTransformer[RealResult]

Inherited from Transformer

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped