You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Initial add of project
* Update ranking sample
* Get sample working
* Updates based on feedback
* Add refitting on validation and test data sets
* Update console headers
* Iteration print improvements
* Correct validationData
* Printing NDCG@1,3,10 & DCG@10
* Printing NDCG@1,3,10 & DCG@10
* Add readme
* Update based on feedback
* Use new DcgTruncation property
* Update to latest AutoML package
* Review feedback
* Wording for 1st refit step
* Update to include original label in output
Co-authored-by: Justin Ormont <[email protected]>
Console.WriteLine($" Normalized Discounted Cumulative Gain (NDCG@{optimizationMetricTruncationLevel}) = {metrics?.NormalizedDiscountedCumulativeGains?[(int)optimizationMetricTruncationLevel-1]??double.NaN:0.####}, a value from 0 and 1, where closer to 1.0 is better");
64
+
Console.WriteLine($" Discounted Cumulative Gain (DCG@{optimizationMetricTruncationLevel}) = {metrics?.DiscountedCumulativeGains?[(int)optimizationMetricTruncationLevel-1]??double.NaN:0.####}");
0 commit comments