Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/Microsoft.ML.StaticPipelineTesting/Training.cs
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ public void FastTreeRanking()
Assert.InRange(metrics.Ndcg[2], 36.5, 37);
}

[Fact]
[ConditionalFact(typeof(Environment), nameof(Environment.Is64BitProcess))] // LightGBM is 64-bit only
public void LightGBMRanking()
{
var env = new ConsoleEnvironment(seed: 0);
Expand Down Expand Up @@ -795,7 +795,7 @@ public void LightGBMRanking()
Assert.InRange(metrics.Ndcg[2], 36.5, 37);
}

[Fact]
[ConditionalFact(typeof(Environment), nameof(Environment.Is64BitProcess))] // LightGBM is 64-bit only
public void MultiClassLightGBM()
{
var env = new ConsoleEnvironment(seed: 0);
Expand Down