When running the Ranking AutoML experiment on this data from the Ranking sample, I seem to get a Metric Microsoft.ML.Data.RankingMetrics not implemented error during the Execute method.
I'm probably doing something wrong but I'm not sure what I'm missing.
var context = new MLContext();
var data = context.Data.LoadFromTextFile<RankingData>("./ranking.tsv", separatorChar: '\t');
var settings = new RankingExperimentSettings
{
MaxExperimentTimeInSeconds = 300,
OptimizingMetric = RankingMetric.Ndcg
};
var experiment = context.Auto().CreateRankingExperiment(settings);
var results = experiment.Execute(data);
Here's the full code, if needed.
When running the Ranking AutoML experiment on this data from the Ranking sample, I seem to get a
Metric Microsoft.ML.Data.RankingMetrics not implementederror during theExecutemethod.I'm probably doing something wrong but I'm not sure what I'm missing.
Here's the full code, if needed.