Implemented interface member:
method
Fit
Microsoft.ML.IEstimator<TTransformer>.Fit(Microsoft.ML.IDataView)
8 references to Fit
Microsoft.ML.Data (1)
DataLoadSave\DataOperationsCatalog.cs (1)
574data = new HashingEstimator(env, columnOptions).Fit(data).Transform(data);
Microsoft.ML.Samples (1)
Dynamic\Transforms\Conversion\HashWithOptions.cs (1)
63var transformer = pipeline.Fit(data);
Microsoft.ML.Tests (3)
RangeFilterTests.cs (1)
31data = ML.Transforms.Conversion.Hash("Key", "Strings", numberOfBits: 20).Fit(data).Transform(data);
Transformers\HashTests.cs (2)
78var result = pipe.Fit(dataView).Transform(dataView); 119var result = pipe.Fit(dataView).Transform(dataView);
Microsoft.ML.Transforms (3)
Dracula\CountTargetEncodingTransformer.cs (1)
291var hashingTransformer = _hashingEstimator.Fit(input);
OneHotHashEncoding.cs (1)
174_transformer = new TransformerChain<ITransformer>(hash.Fit(input));
Text\WordHashBagProducingTransform.cs (1)
372var hashing = new HashingEstimator(h, hashColumns.ToArray()).Fit(input);