Implemented interface member:
method
Fit
Microsoft.ML.IEstimator<TTransformer>.Fit(Microsoft.ML.IDataView)
10 references to Fit
Microsoft.ML.FastTree (2)
TreeEnsembleFeaturizationEstimator.cs (2)
16
/// requires an input feature column name and a suffix for all output columns. The <see cref="ITransformer"/> returned by <see cref="
Fit
(IDataView)"/>
29
/// The name of feature column in the <see cref="IDataView"/> when calling <see cref="
Fit
(IDataView)"/>.
Microsoft.ML.Samples (7)
Dynamic\Transforms\TreeFeaturization\FastForestBinaryFeaturizationWithOptions.cs (1)
75
var model = pipeline.
Fit
(dataView);
Dynamic\Transforms\TreeFeaturization\FastForestRegressionFeaturizationWithOptions.cs (1)
75
var model = pipeline.
Fit
(dataView);
Dynamic\Transforms\TreeFeaturization\FastTreeBinaryFeaturizationWithOptions.cs (1)
77
var model = pipeline.
Fit
(dataView);
Dynamic\Transforms\TreeFeaturization\FastTreeRankingFeaturizationWithOptions.cs (1)
73
var model = pipeline.
Fit
(dataView);
Dynamic\Transforms\TreeFeaturization\FastTreeRegressionFeaturizationWithOptions.cs (1)
75
var model = pipeline.
Fit
(dataView);
Dynamic\Transforms\TreeFeaturization\FastTreeTweedieFeaturizationWithOptions.cs (1)
75
var model = pipeline.
Fit
(dataView);
Dynamic\Transforms\TreeFeaturization\PretrainedTreeEnsembleFeaturizationWithOptions.cs (1)
66
.FeaturizeByPretrainTreeEnsemble(options).
Fit
(dataView);
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEnsembleFeaturizerTest.cs (1)
265
var treeFeaturizer = ML.Transforms.FeaturizeByPretrainTreeEnsemble(options).
Fit
(dataView);