1 write to KeptRowCount
Microsoft.ML.Data (1)
Training\TrainerUtils.cs (1)
557KeptRowCount++;
11 references to KeptRowCount
Microsoft.ML.FastTree (3)
FastTree.cs (3)
1844pos = cursor.KeptRowCount - 1; 1890_boundaries.Add(checked((int)cursor.KeptRowCount)); 1891totalInstances = cursor.KeptRowCount;
Microsoft.ML.KMeansClustering (2)
KMeansPlusPlusTrainer.cs (2)
428totalTrainingInstances = cursor.KeptRowCount; 1750TotalTrainingInstances = set.Select(cur => cur.KeptRowCount).Sum()
Microsoft.ML.StandardTrainers (6)
LdSvm\LdSvmTrainer.cs (1)
521Ch.Check(cursor.KeptRowCount > 0, NoTrainingInstancesMessage);
Standard\LogisticRegression\LbfgsPredictorBase.cs (5)
535NumGoodRows = cursor.KeptRowCount; 620ch.Assert(cursor.KeptRowCount <= int.MaxValue); 621int index = (int)cursor.KeptRowCount - 1; 632if (cursor.KeptRowCount >= int.MaxValue) 639NumGoodRows = cursor.KeptRowCount;