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