Class

keystoneml.workflow

OptimizableEstimator

Related Doc: package workflow

Permalink

abstract class OptimizableEstimator[A, B] extends Estimator[A, B] with Optimizable

Represents a node-level optimizable Estimator and its optimization rules

Linear Supertypes
Optimizable, Estimator[A, B], EstimatorOperator, Serializable, Serializable, Operator, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OptimizableEstimator
  2. Optimizable
  3. Estimator
  4. EstimatorOperator
  5. Serializable
  6. Serializable
  7. Operator
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OptimizableEstimator()

    Permalink

Abstract Value Members

  1. abstract val default: Estimator[A, B]

    Permalink
  2. abstract def optimize(sample: RDD[A], numPerPartition: Map[Int, Int]): Estimator[A, B]

    Permalink

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. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def execute(deps: Seq[Expression]): TransformerExpression

    Permalink
    Definition Classes
    EstimatorOperator → Operator
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def fit(data: RDD[A]): Transformer[A, B]

    Permalink

    The type-safe method that ML developers need to implement when writing new Estimators.

    The type-safe method that ML developers need to implement when writing new Estimators.

    data

    The estimator's training data.

    returns

    A new transformer

    Definition Classes
    OptimizableEstimatorEstimator
  11. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  14. def label: String

    Permalink
    Definition Classes
    Operator
  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( ... )
  23. final def withData(data: PipelineDataset[A]): Pipeline[A, B]

    Permalink

    Constructs a pipeline that fits this estimator to training data, then applies the resultant transformer to the Pipeline input.

    Constructs a pipeline that fits this estimator to training data, then applies the resultant transformer to the Pipeline input.

    data

    The training data

    returns

    A pipeline that fits this estimator and applies the result to inputs.

    Definition Classes
    Estimator
  24. final def withData(data: RDD[A]): Pipeline[A, B]

    Permalink

    Constructs a pipeline that fits this estimator to training data, then applies the resultant transformer to the Pipeline input.

    Constructs a pipeline that fits this estimator to training data, then applies the resultant transformer to the Pipeline input.

    data

    The training data

    returns

    A pipeline that fits this estimator and applies the result to inputs.

    Definition Classes
    Estimator

Inherited from Optimizable

Inherited from Estimator[A, B]

Inherited from EstimatorOperator

Inherited from Serializable

Inherited from Serializable

Inherited from Operator

Inherited from AnyRef

Inherited from Any

Ungrouped