|
ConfusionMatrix Constructor (Boolean, Boolean)
|
Constructs a new Confusion Matrix.
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public ConfusionMatrix(
bool[] predicted,
bool[] expected
)
Public Sub New (
predicted As Boolean(),
expected As Boolean()
)
Request Example
View SourceParameters
- predicted
- Type: SystemBoolean
The values predicted by the model. - expected
- Type: SystemBoolean
The actual, truth values from the data.
See Also