Implemented interface member:
method
Fit
Microsoft.ML.IEstimator<TTransformer>.Fit(Microsoft.ML.IDataView)
4 references to Fit
Microsoft.ML.Samples (2)
Dynamic\Transforms\FeatureSelection\SelectFeaturesBasedOnMutualInformation.cs (1)
42var transformedData = pipeline.Fit(data).Transform(data);
Dynamic\Transforms\FeatureSelection\SelectFeaturesBasedOnMutualInformationMultiColumn.cs (1)
45var transformedData = pipeline.Fit(data).Transform(data);
Microsoft.ML.Tests (1)
Transformers\FeatureSelectionTests.cs (1)
215var result = pipe.Fit(dataView).Transform(dataView);
Microsoft.ML.Transforms (1)
MutualInformationFeatureSelection.cs (1)
270return new MutualInformationFeatureSelectingEstimator(env, options.LabelColumnName, options.SlotsInOutput, options.NumBins, cols).Fit(input).Transform(input) as IDataTransform;