public static NearestNeighborsBinary.Output Add(this Microsoft.ML.Runtime.Experiment exp, NearestNeighborsBinary input)
        {
            var output = new NearestNeighborsBinary.Output();

            exp.Add(input, output);
            return(output);
        }
 public static void Add(this Microsoft.ML.Runtime.Experiment exp, NearestNeighborsBinary input, NearestNeighborsBinary.Output output)
 {
     exp.AddEntryPoint(NearestNeighborsBinary.Name, input, output);
 }