RankingCatalog.Evaluate 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.
Overloads
Evaluate(IDataView, String, String, String) |
Evaluates scored ranking data. |
Evaluate(IDataView, RankingEvaluatorOptions, String, String, String) |
Evaluates scored ranking data. |
Evaluate(IDataView, String, String, String)
Evaluates scored ranking data.
public Microsoft.ML.Data.RankingMetrics Evaluate (Microsoft.ML.IDataView data, string labelColumnName = "Label", string rowGroupColumnName = "GroupId", string scoreColumnName = "Score");
member this.Evaluate : Microsoft.ML.IDataView * string * string * string -> Microsoft.ML.Data.RankingMetrics
Public Function Evaluate (data As IDataView, Optional labelColumnName As String = "Label", Optional rowGroupColumnName As String = "GroupId", Optional scoreColumnName As String = "Score") As RankingMetrics
Parameters
- data
- IDataView
The scored data.
- labelColumnName
- String
The name of the label column in data
.
- rowGroupColumnName
- String
The name of the groupId column in data
.
- scoreColumnName
- String
The name of the score column in data
.
Returns
The evaluation results for these calibrated outputs.
Applies to
Evaluate(IDataView, RankingEvaluatorOptions, String, String, String)
Evaluates scored ranking data.
public Microsoft.ML.Data.RankingMetrics Evaluate (Microsoft.ML.IDataView data, Microsoft.ML.Data.RankingEvaluatorOptions options, string labelColumnName = "Label", string rowGroupColumnName = "GroupId", string scoreColumnName = "Score");
member this.Evaluate : Microsoft.ML.IDataView * Microsoft.ML.Data.RankingEvaluatorOptions * string * string * string -> Microsoft.ML.Data.RankingMetrics
Public Function Evaluate (data As IDataView, options As RankingEvaluatorOptions, Optional labelColumnName As String = "Label", Optional rowGroupColumnName As String = "GroupId", Optional scoreColumnName As String = "Score") As RankingMetrics
Parameters
- data
- IDataView
The scored data.
- options
- RankingEvaluatorOptions
Options to control the evaluation result.
- labelColumnName
- String
The name of the label column in data
.
- rowGroupColumnName
- String
The name of the groupId column in data
.
- scoreColumnName
- String
The name of the score column in data
.
Returns
The evaluation results for these calibrated outputs.