BinaryClassificationCatalog.EvaluateNonCalibrated Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Evaluates scored binary classification data, without probability-based metrics.
public Microsoft.ML.Data.BinaryClassificationMetrics EvaluateNonCalibrated (Microsoft.ML.IDataView data, string labelColumnName = "Label", string scoreColumnName = "Score", string predictedLabelColumnName = "PredictedLabel");
member this.EvaluateNonCalibrated : Microsoft.ML.IDataView * string * string * string -> Microsoft.ML.Data.BinaryClassificationMetrics
Public Function EvaluateNonCalibrated (data As IDataView, Optional labelColumnName As String = "Label", Optional scoreColumnName As String = "Score", Optional predictedLabelColumnName As String = "PredictedLabel") As BinaryClassificationMetrics
Parameters
- data
- IDataView
The scored data.
- labelColumnName
- String
The name of the label column in data
.
- scoreColumnName
- String
The name of the score column in data
.
- predictedLabelColumnName
- String
The name of the predicted label column in data
.
Returns
The evaluation results for these uncalibrated outputs.