8 writes to PruningTest
Microsoft.ML.FastTree (8)
FastTreeClassification.cs (2)
291
PruningTest
= new TestHistory(ValidTest, 0);
296
PruningTest
= new TestWindowWithTolerance(ValidTest, 0, FastTreeTrainerOptions.PruningWindowSize, FastTreeTrainerOptions.PruningThreshold);
FastTreeRanking.cs (2)
270
PruningTest
= new TestHistory(ValidTest, 0);
275
PruningTest
= new TestWindowWithTolerance(ValidTest, 0, FastTreeTrainerOptions.PruningWindowSize, FastTreeTrainerOptions.PruningThreshold);
FastTreeRegression.cs (2)
291
PruningTest
= new TestWindowWithTolerance(ValidTest, 0, FastTreeTrainerOptions.PruningWindowSize, FastTreeTrainerOptions.PruningThreshold);
293
PruningTest
= new TestHistory(ValidTest, 0);
FastTreeTweedie.cs (2)
270
PruningTest
= new TestWindowWithTolerance(ValidTest, 0, FastTreeTrainerOptions.PruningWindowSize, FastTreeTrainerOptions.PruningThreshold);
272
PruningTest
= new TestHistory(ValidTest, 0);
10 references to PruningTest
Microsoft.ML.FastTree (10)
BoostingFastTree.cs (2)
157
if (!FastTreeTrainerOptions.WriteLastEnsemble &&
PruningTest
!= null)
159
bestIteration =
PruningTest
.BestIteration;
FastTreeRanking.cs (4)
346
if (
PruningTest
!= null)
347
PruningTest
.ComputeTests();
373
if (
PruningTest
!= null)
375
validTestResult =
PruningTest
.ComputeTests().First().FinalValue;
FastTreeRegression.cs (2)
367
if (
PruningTest
!= null)
369
PruningTest
.ComputeTests();
FastTreeTweedie.cs (2)
305
if (
PruningTest
!= null)
306
PruningTest
.ComputeTests();