We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1724da8 commit 36cad67Copy full SHA for 36cad67
docs/samples/Microsoft.ML.Samples/Dynamic/Trainers/Ranking/LightGbmWithOptions.cs
@@ -29,7 +29,8 @@ public static void Example()
29
Booster = new GradientBooster.Options
30
{
31
FeatureFraction = 0.9
32
- }
+ },
33
+ RowGroupColumnName = "GroupId"
34
});
35
36
// Fit this pipeline to the training Data.
@@ -43,7 +44,7 @@ public static void Example()
43
44
45
// Expected output:
46
// DCG: @1:1.71, @2:3.88, @3:7.93
- // NDCG: @1:7.98, @2:12.14, @3:16.62
47
+ // NDCG: @1:0.08, @2:0.12, @3:0.17
48
}
49
50
0 commit comments