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