12 instantiations of FastForestOption
Microsoft.ML.AutoML (6)
API\AutoCatalog.cs (3)
369
fastForestOption = fastForestOption ?? new
FastForestOption
();
473
fastForestOption = fastForestOption ?? new
FastForestOption
();
584
fastForestOption = fastForestOption ?? new
FastForestOption
();
FastForestBinary.cs (1)
26
this.TParameter = new
FastForestOption
();
FastForestOva.cs (1)
26
this.TParameter = new
FastForestOption
();
FastForestRegression.cs (1)
26
this.TParameter = new
FastForestOption
();
Microsoft.ML.AutoML.Tests (6)
SweepableExtensionTest.cs (6)
51
var pipeline = estimator.Append(SweepableEstimatorFactory.CreateFastForestBinary(new
FastForestOption
()));
59
var estimator = SweepableEstimatorFactory.CreateFastForestBinary(new
FastForestOption
());
69
var estimator = SweepableEstimatorFactory.CreateFastForestBinary(new
FastForestOption
());
120
var pipeline = SweepableEstimatorFactory.CreateFastForestBinary(new
FastForestOption
())
188
var pipeline = estimator.Append(SweepableEstimatorFactory.CreateFastForestBinary(new
FastForestOption
()), SweepableEstimatorFactory.CreateFastForestBinary(new
FastForestOption
()));
30 references to FastForestOption
Microsoft.ML.AutoML (30)
API\AutoCatalog.cs (9)
347
FastForestOption
fastForestOption = null,
352
SearchSpace<
FastForestOption
> fastForestSearchSpace = null,
373
res.Add(SweepableEstimatorFactory.CreateFastForestBinary(fastForestOption, fastForestSearchSpace ?? new SearchSpace<
FastForestOption
>(fastForestOption)));
447
FastForestOption
fastForestOption = null,
454
SearchSpace<
FastForestOption
> fastForestSearchSpace = null,
477
res.Add(SweepableEstimatorFactory.CreateFastForestOva(fastForestOption, fastForestSearchSpace ?? new SearchSpace<
FastForestOption
>(fastForestOption)));
562
FastForestOption
fastForestOption = null,
567
SearchSpace<
FastForestOption
> fastForestSearchSpace = null,
588
res.Add(SweepableEstimatorFactory.CreateFastForestRegression(fastForestOption, fastForestSearchSpace ?? new SearchSpace<
FastForestOption
>(fastForestOption)));
FastForestBinary.cs (3)
14
internal partial class FastForestBinary : SweepableEstimator<
FastForestOption
>
16
public FastForestBinary(
FastForestOption
defaultOption, SearchSpace<
FastForestOption
> searchSpace = null)
FastForestOva.cs (3)
14
internal partial class FastForestOva : SweepableEstimator<
FastForestOption
>
16
public FastForestOva(
FastForestOption
defaultOption, SearchSpace<
FastForestOption
> searchSpace = null)
FastForestRegression.cs (3)
14
internal partial class FastForestRegression : SweepableEstimator<
FastForestOption
>
16
public FastForestRegression(
FastForestOption
defaultOption, SearchSpace<
FastForestOption
> searchSpace = null)
SweepableEstimator\Estimators\FastForest.cs (3)
11
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastForestOption
param)
30
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastForestOption
param)
49
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastForestOption
param)
SweepableEstimatorFactory.cs (9)
41
public static FastForestBinary CreateFastForestBinary(
FastForestOption
defaultOption, SearchSpace<
FastForestOption
> searchSpace = null)
44
searchSpace = new SearchSpace<
FastForestOption
>(defaultOption);
50
public static FastForestOva CreateFastForestOva(
FastForestOption
defaultOption, SearchSpace<
FastForestOption
> searchSpace = null)
53
searchSpace = new SearchSpace<
FastForestOption
>(defaultOption);
59
public static FastForestRegression CreateFastForestRegression(
FastForestOption
defaultOption, SearchSpace<
FastForestOption
> searchSpace = null)
62
searchSpace = new SearchSpace<
FastForestOption
>(defaultOption);