3 writes to DropoutRng
Microsoft.ML.FastTree (3)
BoostingFastTree.cs (1)
100
optimizationAlgorithm.
DropoutRng
= new Random(FastTreeTrainerOptions.Seed);
RandomForest.cs (1)
53
optimizationAlgorithm.
DropoutRng
= null;
Training\OptimizationAlgorithms\OptimizationAlgorithm.cs (1)
46
DropoutRng
= new Random();
2 references to DropoutRng
Microsoft.ML.FastTree (2)
Training\OptimizationAlgorithms\GradientDescent.cs (2)
50
Enumerable.Range(0, numberOfTrees).Where(t => (
DropoutRng
.NextDouble() < DropoutRate)).ToArray();
54
droppedTrees = new int[] {
DropoutRng
.Next(numberOfTrees) };