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