We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae67a10 commit 812880eCopy full SHA for 812880e
docs/samples/Microsoft.ML.Samples/Program.cs
@@ -1,6 +1,5 @@
1
using System;
2
using System.Reflection;
3
-using Samples.Dynamic.Trainers.Ranking;
4
5
namespace Microsoft.ML.Samples
6
{
@@ -10,7 +9,7 @@ public static class Program
10
9
11
internal static void RunAll()
12
13
- /*int samples = 0;
+ int samples = 0;
14
foreach (var type in Assembly.GetExecutingAssembly().GetTypes())
15
16
var sample = type.GetMethod("Example", BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy);
@@ -22,8 +21,7 @@ internal static void RunAll()
22
21
}
23
24
25
- Console.WriteLine("Number of samples that ran without any exception: " + samples);*/
26
- LightGbm.Example();
+ Console.WriteLine("Number of samples that ran without any exception: " + samples);
27
28
29
0 commit comments