3 writes to TrainedEnsemble
Microsoft.ML.FastTree (3)
FastTree.cs (1)
233TrainedEnsemble = Ensemble;
RandomForestClassification.cs (1)
311TrainedEnsemble = new InternalTreeEnsemble();
RandomForestRegression.cs (1)
443TrainedEnsemble = new InternalTreeEnsemble();
11 references to TrainedEnsemble
Microsoft.ML.FastTree (11)
FastTree.cs (1)
235TrainedEnsemble.RemapFeatures(FeatureMap);
FastTreeClassification.cs (1)
206var pred = new FastTreeBinaryModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions);
FastTreeRanking.cs (1)
152return new FastTreeRankingModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions);
FastTreeRegression.cs (1)
124return new FastTreeRegressionModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions);
FastTreeTweedie.cs (1)
134return new FastTreeTweedieModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions);
RandomForestClassification.cs (3)
238TrainedEnsemble.RemapFeatures(FeatureMap); 251return new FastForestBinaryModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions); 344TrainedEnsemble.AddTree(newTree);
RandomForestRegression.cs (3)
377TrainedEnsemble.RemapFeatures(FeatureMap); 384return new FastForestRegressionModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions, FastTreeTrainerOptions.NumberOfQuantileSamples); 476TrainedEnsemble.AddTree(newTree);