1 instantiation of WeightedPoint
Microsoft.ML.KMeansClustering (1)
KMeansPlusPlusTrainer.cs (1)
1645
wRow = new
WeightedPoint
();
13 references to WeightedPoint
Microsoft.ML.KMeansClustering (13)
KMeansPlusPlusTrainer.cs (13)
843
Heap<KMeansUtils.
WeightedPoint
>[] buffer = null;
998
Heap<KMeansUtils.
WeightedPoint
>[] buffer = null;
1597
ref Heap<
WeightedPoint
>[] buffer)
1605
Heap<
WeightedPoint
> outHeap = null;
1606
var rowStats = ParallelMapReduce<Heap<
WeightedPoint
>, Heap<
WeightedPoint
>>(
1608
(ref Heap<
WeightedPoint
> heap) =>
1611
heap = new Heap<
WeightedPoint
>((x, y) => x.Weight > y.Weight, numSamples);
1615
(ref VBuffer<float> point, int pointRowIndex, Heap<
WeightedPoint
> heap, Random rand) =>
1641
WeightedPoint
wRow;
1651
(Heap<
WeightedPoint
>[] heaps, Random rand, ref Heap<
WeightedPoint
> finalHeap) =>
1654
finalHeap = new Heap<
WeightedPoint
>((x, y) => x.Weight > y.Weight, numSamples);