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