Base:
property
NumExamples
Microsoft.ML.Trainers.FastTree.DataConverter.NumExamples
14 references to NumExamples
Microsoft.ML.FastTree (14)
FastTree.cs (14)
1962kvEnums[i] = _instanceList[features[i]].Binned(BinUpperBounds[features[i]], NumExamples).GetEnumerator(); 2034return new NHotFeatureFlock(denseBins, delta.ToArray(), NumExamples, hotFeatureStarts, bups); 2061yield return new SingletonFeatureFlock(new Dense0BitIntArray(NumExamples), BinUpperBounds[0]); 2072int[] binnedValues = new int[NumExamples]; 2084values.CopyTo(NumExamples, ref temp); 2095int[] lastOn = new int[NumExamples]; 2120using (IEnumerator<int> hotEnumerator = _instanceList[iFeatureLocal].AllIndicesGT(NumExamples, firstBin).GetEnumerator()) 2183int[] binnedValues = new int[NumExamples]; 2187int[] lastOn = new int[NumExamples]; 2207long hotNThreshold = (long)(0.1 * NumExamples); 2261using (IEnumerator<int> hotEnumerator = values.AllIndicesGT(NumExamples, firstBin).GetEnumerator()) 2282int superLocalHot = values.CountIndicesGT(NumExamples, firstBin); 2322ch.Assert(values.CountIndicesGT(NumExamples, firstBin) == localHotRows); 2331localHotRows = values.CountIndicesGT(NumExamples, firstBin);