9 references to OptimizationAlgorithmType
Microsoft.ML.FastTree (8)
BoostingFastTree.cs (5)
36if (FastTreeTrainerOptions.OptimizationAlgorithm == BoostedTreeOptions.OptimizationAlgorithmType.AcceleratedGradientDescent) 38if (FastTreeTrainerOptions.OptimizationAlgorithm == BoostedTreeOptions.OptimizationAlgorithmType.ConjugateGradientDescent) 83case BoostedTreeOptions.OptimizationAlgorithmType.GradientDescent: 86case BoostedTreeOptions.OptimizationAlgorithmType.AcceleratedGradientDescent: 89case BoostedTreeOptions.OptimizationAlgorithmType.ConjugateGradientDescent:
FastTreeArguments.cs (3)
685/// See <see cref="OptimizationAlgorithmType"/> for available optimizers. 688public OptimizationAlgorithmType OptimizationAlgorithm = OptimizationAlgorithmType.GradientDescent;
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
275OptimizationAlgorithm = BoostedTreeOptions.OptimizationAlgorithmType.AcceleratedGradientDescent,