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)
574
data = new HashingEstimator(env, columnOptions).
Fit
(data).Transform(data);
Microsoft.ML.Samples (1)
Dynamic\Transforms\Conversion\HashWithOptions.cs (1)
63
var transformer = pipeline.
Fit
(data);
Microsoft.ML.Tests (3)
RangeFilterTests.cs (1)
31
data = ML.Transforms.Conversion.Hash("Key", "Strings", numberOfBits: 20).
Fit
(data).Transform(data);
Transformers\HashTests.cs (2)
78
var result = pipe.
Fit
(dataView).Transform(dataView);
119
var result = pipe.
Fit
(dataView).Transform(dataView);
Microsoft.ML.Transforms (3)
Dracula\CountTargetEncodingTransformer.cs (1)
291
var hashingTransformer = _hashingEstimator.
Fit
(input);
OneHotHashEncoding.cs (1)
174
_transformer = new TransformerChain<ITransformer>(hash.
Fit
(input));
Text\WordHashBagProducingTransform.cs (1)
372
var hashing = new HashingEstimator(h, hashColumns.ToArray()).
Fit
(input);