final case class ConfusionMatrix(labels: Seq[Int]) extends Aggregator[Prediction[Int, Int], Map[(Int, Int), Long], DenseMatrix[Long]] with Product with Serializable
Generic Consfusion Matrix Aggregator for any dimension. Thresholds must be applied to make a prediction prior to using this aggregator.
- labels
List of possible label values
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConfusionMatrix
- Serializable
- Product
- Equals
- Aggregator
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
andThenPresent[D](present2: (DenseMatrix[Long]) ⇒ D): Aggregator[Prediction[Int, Int], Map[(Int, Int), Long], D]
- Definition Classes
- Aggregator
-
def
append(l: Map[(Int, Int), Long], r: Prediction[Int, Int]): Map[(Int, Int), Long]
- Definition Classes
- Aggregator
-
def
appendAll(old: Map[(Int, Int), Long], items: TraversableOnce[Prediction[Int, Int]]): Map[(Int, Int), Long]
- Definition Classes
- Aggregator
-
def
apply(inputs: TraversableOnce[Prediction[Int, Int]]): DenseMatrix[Long]
- Definition Classes
- Aggregator
-
def
applyCumulatively[In <: TraversableOnce[Prediction[Int, Int]], Out](inputs: In)(implicit bf: CanBuildFrom[In, DenseMatrix[Long], Out]): Out
- Definition Classes
- Aggregator
-
def
applyOption(inputs: TraversableOnce[Prediction[Int, Int]]): Option[DenseMatrix[Long]]
- Definition Classes
- Aggregator
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
composePrepare[A1](prepare2: (A1) ⇒ Prediction[Int, Int]): Aggregator[A1, Map[(Int, Int), Long], DenseMatrix[Long]]
- Definition Classes
- Aggregator
-
def
cumulativeIterator(inputs: Iterator[Prediction[Int, Int]]): Iterator[DenseMatrix[Long]]
- Definition Classes
- Aggregator
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
join[A2 <: Prediction[Int, Int], B2, C2](that: Aggregator[A2, B2, C2]): Aggregator[A2, (Map[(Int, Int), Long], B2), (DenseMatrix[Long], C2)]
- Definition Classes
- Aggregator
- val labels: Seq[Int]
-
def
lift: MonoidAggregator[Prediction[Int, Int], Option[Map[(Int, Int), Long]], Option[DenseMatrix[Long]]]
- Definition Classes
- Aggregator
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
prepare(input: Prediction[Int, Int]): Map[(Int, Int), Long]
- Definition Classes
- ConfusionMatrix → Aggregator
-
def
present(m: Map[(Int, Int), Long]): DenseMatrix[Long]
- Definition Classes
- ConfusionMatrix → Aggregator
-
def
reduce(items: TraversableOnce[Map[(Int, Int), Long]]): Map[(Int, Int), Long]
- Definition Classes
- Aggregator
-
def
reduce(l: Map[(Int, Int), Long], r: Map[(Int, Int), Long]): Map[(Int, Int), Long]
- Definition Classes
- Aggregator
-
def
reduceOption(items: TraversableOnce[Map[(Int, Int), Long]]): Option[Map[(Int, Int), Long]]
- Definition Classes
- Aggregator
-
def
semigroup: Semigroup[Map[(Int, Int), Long]]
- Definition Classes
- ConfusionMatrix → Aggregator
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toFold: Fold[Prediction[Int, Int], Option[DenseMatrix[Long]]]
- Definition Classes
- Aggregator
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
zip[A2, B2, C2](ag2: Aggregator[A2, B2, C2]): Aggregator[(Prediction[Int, Int], A2), (Map[(Int, Int), Long], B2), (DenseMatrix[Long], C2)]
- Definition Classes
- Aggregator