Property | Type | Description |
---|
Method | Description | |
---|---|---|
Combine ( ) : |
Combines several confusion matrices into one single matrix.
|
|
ConfusionMatrix ( bool predicted, bool expected ) : System |
Constructs a new Confusion Matrix.
|
|
ConfusionMatrix ( int matrix ) : System |
Constructs a new Confusion Matrix.
|
|
ConfusionMatrix ( int predicted, int expected, int positiveValue = 1 ) : System |
Constructs a new Confusion Matrix.
|
|
ConfusionMatrix ( int truePositives, int falseNegatives, int falsePositives, int trueNegatives ) : System |
Constructs a new Confusion Matrix.
|
|
ToGeneralMatrix ( ) : |
Converts this matrix into a GeneralConfusionMatrix.
|
|
ToString ( ) : string |
Returns a System.String representing this confusion matrix.
|
public ConfusionMatrix ( bool predicted, bool expected ) : System | ||
predicted | bool | The values predicted by the model. |
expected | bool | The actual, truth values from the data. |
return | System |
public ConfusionMatrix ( int matrix ) : System | ||
matrix | int | |
return | System |
public ConfusionMatrix ( int predicted, int expected, int positiveValue = 1 ) : System | ||
predicted | int | The values predicted by the model. |
expected | int | The actual, truth values from the data. |
positiveValue | int | The integer label which identifies a value as positive. |
return | System |
public ConfusionMatrix ( int truePositives, int falseNegatives, int falsePositives, int trueNegatives ) : System | ||
truePositives | int | |
falseNegatives | int | |
falsePositives | int | |
trueNegatives | int | |
return | System |
public ToGeneralMatrix ( ) : |
||
return |