Class

com.eharmony.aloha.audit.impl

EitherAuditorError

Related Doc: package impl

Permalink

final case class EitherAuditorError(failureModelIds: ::[ModelIdentity], errorMsgs: Seq[String], missingVarNames: Set[String]) extends Product with Serializable

Diagnostic information about failures encountered. This structure can be thought of as a flattened tree of failures. The tree is pruned one of two ways, it is either prune at the root, or pruned at the the first submodel successes encountered. The tree is pruned at the root if the auditor is created via EitherAuditor[A](aggregateDiagnostics = false).

If the auditor is created via EitherAuditor[A](aggregateDiagnostics = true), or simply EitherAuditor[A], then the trees are pruned at successes. For instance, imagine a model, model 1, that has submodels 2 and 5. Submodel 2 has submodels 3 and 4; submodel 5 has submodels 6 and 7. Let's say the following submodels fail: 1, 2, 4, 6, 7. Then, information would be aggregated as follows:

//          ORIGINAL        |       PRUNED      |       SIMPLIFIED
//  =====================================================================
//                          |                   |
//   1:F +-- 2:F +--  3:S   |   1 +-- 2 +-- /   |   1 --- 2 +
//       |       |          |     |     |       |           |
//       |       +--  4:F   |     |     +-- 4   |           +-- 4
//       |                  |     |             |
//       +-- 5:S +--  6:F   |     +-- / +-- /   |
//               |          |           |       |
//               +--  7:F   |           +-- /   |  DFS preorder: 1, 2, 4
//                          |                   |
//  =====================================================================

Notice because submodel 5 succeeds, error information about submodels 6 and 7 is disregarded because submodel 5 could recover from its submodels' errors.

So, in the event that diagnostics are aggregated, only information about submodels 1, 2, 4 should be contained in the EitherAuditorError returned by the EitherAuditor.

failureModelIds

a non-empty list of ModelIdentity instances of submodels that failed to produce a prediction. Since the top-level model must fail in order for an EitherAuditorError to be returned, this is a non-empty list. This non-empty list is in DFS preorder.

errorMsgs

messages indicating errors encountered.

missingVarNames

names of variables with missing data encountered in the model computation.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EitherAuditorError
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EitherAuditorError(failureModelIds: ::[ModelIdentity], errorMsgs: Seq[String], missingVarNames: Set[String])

    Permalink

    failureModelIds

    a non-empty list of ModelIdentity instances of submodels that failed to produce a prediction. Since the top-level model must fail in order for an EitherAuditorError to be returned, this is a non-empty list. This non-empty list is in DFS preorder.

    errorMsgs

    messages indicating errors encountered.

    missingVarNames

    names of variables with missing data encountered in the model computation.

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. val errorMsgs: Seq[String]

    Permalink

    messages indicating errors encountered.

  8. val failureModelIds: ::[ModelIdentity]

    Permalink

    a non-empty list of ModelIdentity instances of submodels that failed to produce a prediction.

    a non-empty list of ModelIdentity instances of submodels that failed to produce a prediction. Since the top-level model must fail in order for an EitherAuditorError to be returned, this is a non-empty list. This non-empty list is in DFS preorder.

  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. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. val missingVarNames: Set[String]

    Permalink

    names of variables with missing data encountered in the model computation.

  13. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped