2 writes to WindowSize
Microsoft.ML.FastTree (2)
Training\EarlyStoppingCriteria.cs (2)
500WindowSize = windowSize; 508WindowSize = options.WindowSize;
3 references to WindowSize
Microsoft.ML.FastTree (3)
Training\EarlyStoppingCriteria.cs (3)
493/// Creates a rule which terminates the training process if the validation score is not improved in <see cref="WindowSize"/> consecutive iterations. 524return (_count >= WindowSize); 528internal override IEarlyStoppingCriterionFactory BuildFactory() => new Options() { WindowSize = WindowSize };