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