Skip to content

Commit 812880e

Browse files
committed
revert.
1 parent ae67a10 commit 812880e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/samples/Microsoft.ML.Samples/Program.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Reflection;
3-
using Samples.Dynamic.Trainers.Ranking;
43

54
namespace Microsoft.ML.Samples
65
{
@@ -10,7 +9,7 @@ public static class Program
109

1110
internal static void RunAll()
1211
{
13-
/*int samples = 0;
12+
int samples = 0;
1413
foreach (var type in Assembly.GetExecutingAssembly().GetTypes())
1514
{
1615
var sample = type.GetMethod("Example", BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy);
@@ -22,8 +21,7 @@ internal static void RunAll()
2221
}
2322
}
2423

25-
Console.WriteLine("Number of samples that ran without any exception: " + samples);*/
26-
LightGbm.Example();
24+
Console.WriteLine("Number of samples that ran without any exception: " + samples);
2725
}
2826
}
2927
}

0 commit comments

Comments
 (0)