io.prediction.controller

Evaluation

trait Evaluation extends EngineFactory with Deployment

Defines an evaluation that contains an engine and a metric.

Implementations of this trait can be supplied to "pio eval" as the first argument.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Evaluation
  2. Deployment
  3. EngineFactory
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. var _engine: BaseEngine[_, _, _, _]

    Attributes
    protected[this]
    Definition Classes
    Deployment
  7. var _evaluator: BaseEvaluator[_, _, _, _, _ <: BaseEvaluatorResult]

    Attributes
    protected[this]
  8. var _evaluatorSet: Boolean

    Attributes
    protected[this]
  9. def apply(): BaseEngine[_, _, _, _]

    Returns the Engine of this Deployment

    Returns the Engine of this Deployment

    Definition Classes
    DeploymentEngineFactory
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def engineEvaluator: (BaseEngine[_, _, _, _], BaseEvaluator[_, _, _, _, _])

    Gets the tuple of the Engine and the implementation of io.prediction.core.BaseEvaluator

  13. def engineEvaluator_=[EI, Q, P, A, R <: BaseEvaluatorResult](engineEvaluator: (BaseEngine[EI, Q, P, A], BaseEvaluator[EI, Q, P, A, R])): Unit

    Sets both an Engine and an implementation of io.prediction.core.BaseEvaluator for this Evaluation

    Sets both an Engine and an implementation of io.prediction.core.BaseEvaluator for this Evaluation

    EI

    Evaluation information class

    Q

    Query class

    P

    Predicted result class

    A

    Actual result class

    R

    Metric result class

    engineEvaluator

    A tuple an Engine and an implementation of io.prediction.core.BaseEvaluator

  14. def engineMetric: (BaseEngine[_, _, _, _], Metric[_, _, _, _, _])

    Returns both the Engine and the implementation of Metric for this Evaluation

  15. def engineMetric_=[EI, Q, P, A](engineMetric: (BaseEngine[EI, Q, P, A], Metric[EI, Q, P, A, _])): Unit

    Sets both an Engine and an implementation of Metric for this Evaluation

    Sets both an Engine and an implementation of Metric for this Evaluation

    EI

    Evaluation information class

    Q

    Query class

    P

    Predicted result class

    A

    Actual result class

    engineMetric

    A tuple of Engine and an implementation of Metric

  16. def engineMetrics_=[EI, Q, P, A](engineMetrics: (BaseEngine[EI, Q, P, A], Metric[EI, Q, P, A, _], Seq[Metric[EI, Q, P, A, _]])): Unit

    Sets an Engine, an implementation of Metric, and sequence of implementations of Metric for this Evaluation

    Sets an Engine, an implementation of Metric, and sequence of implementations of Metric for this Evaluation

    EI

    Evaluation information class

    Q

    Query class

    P

    Predicted result class

    A

    Actual result class

    engineMetrics

    A tuple of Engine, an implementation of Metric and sequence of implementations of Metric

  17. def engineParams(key: String): EngineParams

    Override this method to programmatically return engine parameters.

    Override this method to programmatically return engine parameters.

    Definition Classes
    EngineFactory
  18. var engineSet: Boolean

    Attributes
    protected[this]
    Definition Classes
    Deployment
  19. def engine_=[EI, Q, P, A](engine: BaseEngine[EI, Q, P, A]): Unit

    Sets the Engine for this Deployment

    Sets the Engine for this Deployment

    EI

    Evaluation information class

    Q

    Query class

    P

    Predicted result class

    A

    Actual result class

    engine

    An implementation of Engine

    Definition Classes
    Deployment
  20. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  30. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Deployment

Inherited from EngineFactory

Inherited from AnyRef

Inherited from Any

Ungrouped