21 writes to FeatureFraction
Microsoft.ML.AutoML (9)
SweepableEstimator\Estimators\FastForest.cs (3)
19FeatureFraction = param.FeatureFraction, 34FeatureFraction = param.FeatureFraction, 53FeatureFraction = param.FeatureFraction,
SweepableEstimator\Estimators\FastTree.cs (4)
24FeatureFraction = param.FeatureFraction, 48FeatureFraction = param.FeatureFraction, 71FeatureFraction = param.FeatureFraction, 94FeatureFraction = param.FeatureFraction,
Sweepers\SmacSweeper.cs (1)
131FeatureFraction = _args.SplitRatio,
Tuner\SmacTuner.cs (1)
143FeatureFraction = _splitRatio,
Microsoft.ML.FastTree (3)
RandomForestClassification.cs (2)
49FeatureFraction = 0.7; 232FastTreeTrainerOptions.FeatureFraction = 1.0;
RandomForestRegression.cs (1)
371FastTreeTrainerOptions.FeatureFraction = 1.0;
Microsoft.ML.Samples (5)
Dynamic\Trainers\BinaryClassification\FastForestWithOptions.cs (1)
34FeatureFraction = 0.8,
Dynamic\Trainers\Regression\FastForestWithOptions.cs (1)
36FeatureFraction = 0.8,
Dynamic\Transforms\TreeFeaturization\FastForestRegressionFeaturizationWithOptions.cs (1)
49FeatureFraction = 0.8,
Dynamic\Transforms\TreeFeaturization\FastTreeRegressionFeaturizationWithOptions.cs (1)
49FeatureFraction = 0.8,
Dynamic\Transforms\TreeFeaturization\FastTreeTweedieFeaturizationWithOptions.cs (1)
49FeatureFraction = 0.8,
Microsoft.ML.Samples.OneDal (2)
Program.cs (2)
77options.FeatureFraction = 1.0; 109options.FeatureFraction = 1.0;
Microsoft.ML.Sweeper (1)
Algorithms\SmacSweeper.cs (1)
139FeatureFraction = _args.SplitRatio,
Microsoft.ML.Tests (1)
TrainerEstimators\OneDalEstimators.cs (1)
70options.FeatureFraction = 1.0;
9 references to FeatureFraction
Microsoft.ML.FastTree (9)
FastTree.cs (2)
413if (FastTreeTrainerOptions.FeatureFraction < 1.0) 421activeFeatures[i] = _featureSelectionRandom.NextDouble() <= FastTreeTrainerOptions.FeatureFraction;
FastTreeArguments.cs (3)
624ectx.CheckUserArg(0 <= FeatureFraction && FeatureFraction <= 1, nameof(FeatureFraction), "Must be between 0 and 1.");
RandomForestClassification.cs (2)
229if (FastTreeTrainerOptions.FeatureFraction != 1.0) 231ch.Warning($"oneDAL decision forest doesn't support 'FeatureFraction'[per tree] != 1.0, changing it from {FastTreeTrainerOptions.FeatureFraction} to 1.0");
RandomForestRegression.cs (2)
368if (FastTreeTrainerOptions.FeatureFraction != 1.0) 370ch.Warning($"oneDAL decision forest doesn't support 'FeatureFraction'[per tree] != 1.0, changing it from {FastTreeTrainerOptions.FeatureFraction} to 1.0");