23 references to Dense
Microsoft.ML.FastTree (23)
Dataset\DatasetUtils.cs (2)
36ratings.Length, IntArrayType.Dense, IntArrayBits.Bits8, ratings.Select(x => (int)x)); 54skel.NumDocs, IntArrayType.Dense, IntArray.NumBitsNeeded(uvalToOrder.Count),
Dataset\DenseIntArray.cs (4)
25public override IntArrayType Type { get { return IntArrayType.Dense; } } 47type = IntArrayType.Dense; 58return IntArray.New(itemIndices.Length, IntArrayType.Dense, BitsPerItem, itemIndices.Select(x => this[x])); 68newArrays[p] = IntArray.New(assignment[p].Length, IntArrayType.Dense, BitsPerItem, assignment[p].Select(x => this[x]));
Dataset\Feature.cs (2)
212: base(DenseIntArray.New(length, IntArrayType.Dense, 0, Enumerable.Repeat(0, length))) 334DenseIntArray concatBins = (DenseIntArray)IntArray.New(length, IntArrayType.Dense, bitsPerItem);
Dataset\IntArray.cs (4)
95if (type == IntArrayType.Dense || bitsPerItem == IntArrayBits.Bits0) 129if (type == IntArrayType.Dense || bitsPerItem == IntArrayBits.Bits0) 162if (type == IntArrayType.Dense) 343IntArrayType bestType = IntArrayType.Dense;
Dataset\RepeatIntArray.cs (1)
65_values = IntArray.New(tempValueList.Count, IntArrayType.Dense, bitsPerItem, tempValueList) as DenseIntArray;
Dataset\SparseIntArray.cs (4)
83_values = IntArray.New(tempValueList.Count, IntArrayType.Dense, bitsPerItem, tempValueList) as DenseIntArray; 166_values = IntArray.New(tempValueList.Count, IntArrayType.Dense, bitsPerItem, tempValueList) as DenseIntArray; 261DenseIntArray newValues = _values.Clone(bitsPerItem, IntArrayType.Dense) as DenseIntArray; 266DenseIntArray dense = IntArray.New(Length, IntArrayType.Dense, BitsPerItem) as DenseIntArray;
FastTree.cs (4)
1100: IntArrayType.Dense; 1174: IntArrayType.Dense; 1253IntArrayType arrayType = firstBinFrac > sparsifyThreshold ? IntArrayType.Sparse : IntArrayType.Dense; 2032var denseBins = (DenseIntArray)IntArray.New(values.Count, IntArrayType.Dense, flockBits, values);
SumupPerformanceCommand.cs (2)
38public IntArrayType Type = IntArrayType.Dense; 163case IntArrayType.Dense: