13 references to NormalizationMode
Microsoft.ML.Data (12)
Transforms\Normalizer.cs (12)
146internal static ColumnOptionsBase Create(string outputColumnName, string inputColumnName, NormalizationMode mode) 150case NormalizationMode.MinMax: 152case NormalizationMode.MeanVariance: 154case NormalizationMode.LogMeanVariance: 156case NormalizationMode.Binning: 158case NormalizationMode.SupervisedBinning: 160case NormalizationMode.RobustScaling: 297/// <param name="mode">The <see cref="NormalizationMode"/> indicating how to the old values are mapped to the new values.</param> 298internal NormalizingEstimator(IHostEnvironment env, string outputColumnName, string inputColumnName = null, NormalizationMode mode = NormalizationMode.MinMax) 307/// <param name="mode">The <see cref="NormalizationMode"/> indicating how to the old values are mapped to the new values.</param> 309internal NormalizingEstimator(IHostEnvironment env, NormalizationMode mode, params (string outputColumnName, string inputColumnName)[] columns)
Microsoft.ML.Transforms (1)
NormalizerCatalog.cs (1)
22/// <param name="mode">The <see cref="NormalizingEstimator.NormalizationMode"/> used to map the old values to the new ones. </param>