9 instantiations of FastTreeOption
Microsoft.ML.AutoML (7)
API\AutoCatalog.cs (3)
360
fastTreeOption = fastTreeOption ?? new
FastTreeOption
();
464
fastTreeOption = fastTreeOption ?? new
FastTreeOption
();
575
fastTreeOption = fastTreeOption ?? new
FastTreeOption
();
FastTreeBinary.cs (1)
26
this.TParameter = new
FastTreeOption
();
FastTreeOva.cs (1)
26
this.TParameter = new
FastTreeOption
();
FastTreeRegression.cs (1)
26
this.TParameter = new
FastTreeOption
();
FastTreeTweedieRegression.cs (1)
26
this.TParameter = new
FastTreeOption
();
Microsoft.ML.AutoML.Tests (2)
SweepableEstimatorPipelineTest.cs (2)
131
var fastTree = SweepableEstimatorFactory.CreateFastTreeBinary(new
FastTreeOption
());
143
var fastTree = SweepableEstimatorFactory.CreateFastTreeBinary(new
FastTreeOption
());
37 references to FastTreeOption
Microsoft.ML.AutoML (37)
API\AutoCatalog.cs (9)
345
FastTreeOption
fastTreeOption = null,
350
SearchSpace<
FastTreeOption
> fastTreeSearchSpace = null,
364
res.Add(SweepableEstimatorFactory.CreateFastTreeBinary(fastTreeOption, fastTreeSearchSpace ?? new SearchSpace<
FastTreeOption
>(fastTreeOption)));
445
FastTreeOption
fastTreeOption = null,
452
SearchSpace<
FastTreeOption
> fastTreeSearchSpace = null,
468
res.Add(SweepableEstimatorFactory.CreateFastTreeOva(fastTreeOption, fastTreeSearchSpace ?? new SearchSpace<
FastTreeOption
>(fastTreeOption)));
560
FastTreeOption
fastTreeOption = null,
565
SearchSpace<
FastTreeOption
> fastTreeSearchSpace = null,
579
res.Add(SweepableEstimatorFactory.CreateFastTreeRegression(fastTreeOption, fastTreeSearchSpace ?? new SearchSpace<
FastTreeOption
>(fastTreeOption)));
FastTreeBinary.cs (3)
14
internal partial class FastTreeBinary : SweepableEstimator<
FastTreeOption
>
16
public FastTreeBinary(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
FastTreeOva.cs (3)
14
internal partial class FastTreeOva : SweepableEstimator<
FastTreeOption
>
16
public FastTreeOva(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
FastTreeRegression.cs (3)
14
internal partial class FastTreeRegression : SweepableEstimator<
FastTreeOption
>
16
public FastTreeRegression(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
FastTreeTweedieRegression.cs (3)
14
internal partial class FastTreeTweedieRegression : SweepableEstimator<
FastTreeOption
>
16
public FastTreeTweedieRegression(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
SweepableEstimator\Estimators\FastTree.cs (4)
11
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastTreeOption
param)
34
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastTreeOption
param)
57
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastTreeOption
param)
80
public override IEstimator<ITransformer> BuildFromOption(MLContext context,
FastTreeOption
param)
SweepableEstimatorFactory.cs (12)
68
public static FastTreeBinary CreateFastTreeBinary(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
71
searchSpace = new SearchSpace<
FastTreeOption
>(defaultOption);
77
public static FastTreeOva CreateFastTreeOva(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
80
searchSpace = new SearchSpace<
FastTreeOption
>(defaultOption);
86
public static FastTreeRegression CreateFastTreeRegression(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
89
searchSpace = new SearchSpace<
FastTreeOption
>(defaultOption);
95
public static FastTreeTweedieRegression CreateFastTreeTweedieRegression(
FastTreeOption
defaultOption, SearchSpace<
FastTreeOption
> searchSpace = null)
98
searchSpace = new SearchSpace<
FastTreeOption
>(defaultOption);