You are here: Start » FIL.NET » Function Reference » Data Classification » Statistics » FIL.TableOfConfusion_BoolArray
Computes statistics from a confusion matrix for an array of groundTruth and results.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void TableOfConfusion_BoolArray ( IList<bool> inGroundTruth, IList<bool> inResults, out long outTruePositive, out long outFalsePositive, out long outTrueNegative, out long outFalseNegative, FilNet.ConfusionTable outConfusionTable )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inGroundTruth | System.Collections.Generic.IList<bool> | |||
![]() | inResults | System.Collections.Generic.IList<bool> | |||
![]() | outTruePositive | long | |||
![]() | outFalsePositive | long | |||
![]() | outTrueNegative | long | |||
![]() | outFalseNegative | long | |||
![]() | outConfusionTable | FilNet.ConfusionTable |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Array inGroundTruth is empty in TableOfConfusion_BoolArray. |