13 references to FastTree
Microsoft.ML.FastTree (1)
FastTreeClassification.cs (1)
126/// <seealso cref="TreeExtensions.FastTree(BinaryClassificationCatalog.BinaryClassificationTrainers, string, string, string, int, int, int, double)"/>
Microsoft.ML.Samples (1)
Dynamic\Trainers\BinaryClassification\FastTree.cs (1)
31.FastTree();
Microsoft.ML.Tests (11)
FeatureContributionTests.cs (1)
147TestFeatureContribution(ML.BinaryClassification.Trainers.FastTree(), GetSparseDataset(TaskType.BinaryClassification, 100), "FastTreeBinary");
OnnxConversionTest.cs (4)
227mlContext.BinaryClassification.Trainers.FastTree(), 285ML.BinaryClassification.Trainers.FastTree(), 796.Append(mlContext.BinaryClassification.Trainers.FastTree(labelColumnName: "Label", featureColumnName: "Features", numberOfLeaves: 2, numberOfTrees: 1, minimumExampleCountPerLeaf: 2)); 1938mlContext.BinaryClassification.Trainers.FastTree("Label", "MyFeatureVector"),
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (3)
619.Append(mlContext.BinaryClassification.Trainers.FastTree(numberOfTrees: 50)); 742.Append(mlContext.BinaryClassification.Trainers.FastTree(labelColumnName: "Label")); 781.Append(mlContext.BinaryClassification.Trainers.FastTree(labelColumnName: "Label"));
Scenarios\Api\Estimators\PredictAndMetadata.cs (1)
112var singleTrainer = mlContext.BinaryClassification.Trainers.FastTree();
TrainerEstimators\TreeEstimators.cs (1)
1027var estimator = pipeline.Append(context.MulticlassClassification.Trainers.OneVersusAll(context.BinaryClassification.Trainers.FastTree()));
Transformers\TextFeaturizerTests.cs (1)
783.Append(ML.BinaryClassification.Trainers.FastTree());