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