3 instantiations of FastTreeRegressionModelParameters
Microsoft.ML.FastTree (3)
FastTreeRegression.cs (2)
124return new FastTreeRegressionModelParameters(Host, TrainedEnsemble, FeatureCount, InnerOptions); 522return new FastTreeRegressionModelParameters(env, ctx);
TreeEnsemble\TreeEnsembleCombiner.cs (1)
110return new FastTreeRegressionModelParameters(_host, ensemble, featureCount, null);
15 references to FastTreeRegressionModelParameters
Microsoft.ML.FastTree (11)
FastTreeRegression.cs (11)
26[assembly: LoadableClass(typeof(FastTreeRegressionModelParameters), null, typeof(SignatureLoadModel), 28FastTreeRegressionModelParameters.LoaderSignature)] 59: BoostingFastTreeTrainerBase<FastTreeRegressionTrainer.Options, RegressionPredictionTransformer<FastTreeRegressionModelParameters>, FastTreeRegressionModelParameters> 108private protected override FastTreeRegressionModelParameters TrainModelCore(TrainContext context) 191private protected override RegressionPredictionTransformer<FastTreeRegressionModelParameters> MakeTransformer(FastTreeRegressionModelParameters model, DataViewSchema trainSchema) 192=> new RegressionPredictionTransformer<FastTreeRegressionModelParameters>(Host, model, trainSchema, FeatureColumn.Name); 198public RegressionPredictionTransformer<FastTreeRegressionModelParameters> Fit(IDataView trainData, IDataView validationData) 492loaderAssemblyName: typeof(FastTreeRegressionModelParameters).Assembly.FullName); 517internal static FastTreeRegressionModelParameters Create(IHostEnvironment env, ModelLoadContext ctx)
Microsoft.ML.IntegrationTests (3)
Explainability.cs (3)
45RegressionPredictionTransformer<FastTreeRegressionModelParameters> linearPredictor; 60linearPredictor = (loadedModel as TransformerChain<ITransformer>).LastTransformer as RegressionPredictionTransformer<FastTreeRegressionModelParameters>; 125var treeModel = model.LastTransformer.Model;
Microsoft.ML.Tests (1)
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (1)
432var linearModel = model.LastTransformer.Model;