1 write to _host
Microsoft.ML.FastTree (1)
SumupPerformanceCommand.cs (1)
86_host = env.Register("FastTreeSumupPerformance", args.RandomSeed, args.Verbose);
14 references to _host
Microsoft.ML.FastTree (14)
SumupPerformanceCommand.cs (14)
87_host.CheckValue(args, nameof(args)); 89_host.CheckUserArg(Enum.IsDefined(typeof(IntArrayType), args.Type) && args.Type != IntArrayType.Current, nameof(args.Type), "Value not defined"); 90_host.CheckUserArg(args.Length >= 0, nameof(args.Length), "Must be non-negative"); 91_host.CheckUserArg(args.Count >= 0, nameof(args.Count), "Must be non-negative"); 92_host.CheckUserArg(args.Bins > 0, nameof(args.Bins), "Must be positive"); 93_host.CheckUserArg(args.Seconds > 0, nameof(args.Seconds), "Must be positive"); 153using (var pch = _host.StartProgressChannel("Create IntArrays")) 159int salt = _host.Rand.Next(); 172throw _host.ExceptNotImpl("Haven't yet wrote a random generator appropriate for {0}", _type); 214_host.Assert(0 < sparsity && sparsity < 1); 232_host.Assert(0 <= sparsity && sparsity <= 1); 245_host.Assert(Utils.IsIncreasing(0, data.DocIndices, count, _len)); 269using (var ch = _host.Start("Run")) 317InitSumupInputData(data, partition, _host.Rand);