2 instantiations of GlobalContrastNormalizingEstimator
Microsoft.ML.Transforms (2)
NormalizerCatalog.cs (2)
453=> new GlobalContrastNormalizingEstimator(CatalogUtils.GetEnvironment(catalog), outputColumnName, inputColumnName, ensureZeroMean, ensureUnitStandardDeviation, scale); 462=> new GlobalContrastNormalizingEstimator(CatalogUtils.GetEnvironment(catalog), columns);
11 references to GlobalContrastNormalizingEstimator
Microsoft.ML.Samples (1)
Dynamic\Transforms\NormalizeGlobalContrast.cs (1)
26var approximation = mlContext.Transforms.NormalizeGlobalContrast(
Microsoft.ML.Tests (1)
Transformers\NormalizerTests.cs (1)
858var pipe = ML.Transforms.NormalizeGlobalContrast("whitened", "features");
Microsoft.ML.Transforms (9)
GcnTransform.cs (5)
39/// <see cref="ITransformer"/> resulting from fitting a <see cref="LpNormNormalizingEstimator"/> or <see cref="GlobalContrastNormalizingEstimator"/>. 218var cols = new GlobalContrastNormalizingEstimator.ColumnOptions[options.Columns.Length]; 224cols[i] = new GlobalContrastNormalizingEstimator.ColumnOptions( 767/// Base estimator class for <see cref="LpNormNormalizingEstimator"/> and <see cref="GlobalContrastNormalizingEstimator"/> normalizers. 1095/// Create a <see cref="GlobalContrastNormalizingEstimator"/> that takes multiple pairs of columns.
NormalizerCatalog.cs (4)
429/// Create a <see cref="GlobalContrastNormalizingEstimator"/>, which normalizes columns individually applying global contrast normalization. 449public static GlobalContrastNormalizingEstimator NormalizeGlobalContrast(this TransformsCatalog catalog, string outputColumnName, string inputColumnName = null, 461internal static GlobalContrastNormalizingEstimator NormalizeGlobalContrast(this TransformsCatalog catalog, params GlobalContrastNormalizingEstimator.ColumnOptions[] columns)