6 references to NormalizeGlobalContrast
Microsoft.ML.Samples (1)
Dynamic\Transforms\NormalizeGlobalContrast.cs (1)
26var approximation = mlContext.Transforms.NormalizeGlobalContrast(
Microsoft.ML.Tests (4)
Transformers\NormalizerTests.cs (4)
667.Append(ML.Transforms.NormalizeGlobalContrast("gcnorm", "features")) 824var est = ML.Transforms.NormalizeGlobalContrast("gcnNorm1", "features") 825.Append(ML.Transforms.NormalizeGlobalContrast("gcnNorm2", "features", ensureZeroMean: false, ensureUnitStandardDeviation: true, scale: 3)); 858var pipe = ML.Transforms.NormalizeGlobalContrast("whitened", "features");
Microsoft.ML.Transforms (1)
GcnTransform.cs (1)
1044/// <seealso cref="NormalizationCatalog.NormalizeGlobalContrast(TransformsCatalog, string, string, bool, bool, float)"/>