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