10 instantiations of RobustScalingColumnOptions
Microsoft.ML.Data (3)
Transforms\NormalizeColumn.cs (2)
393.Select(col => new NormalizingEstimator.RobustScalingColumnOptions( 1201return CreateBuilder(new NormalizingEstimator.RobustScalingColumnOptions(
Transforms\Normalizer.cs (1)
161return new RobustScalingColumnOptions(outputColumnName, inputColumnName);
Microsoft.ML.Tests (5)
Transformers\NormalizerTests.cs (5)
71new NormalizingEstimator.RobustScalingColumnOptions("float1rb", "float1"), 72new NormalizingEstimator.RobustScalingColumnOptions("float4rb", "float4"), 73new NormalizingEstimator.RobustScalingColumnOptions("double1rb", "double1"), 74new NormalizingEstimator.RobustScalingColumnOptions("double4rb", "double4")); 556var est19 = new NormalizingEstimator(Env, new NormalizingEstimator.RobustScalingColumnOptions("float4"));
Microsoft.ML.Transforms (2)
NormalizerCatalog.cs (2)
353var columnOptions = new NormalizingEstimator.RobustScalingColumnOptions(outputColumnName, inputColumnName, maximumExampleCount, centerData, quantileMin, quantileMax); 383new NormalizingEstimator.RobustScalingColumnOptions(column.OutputColumnName, column.InputColumnName, maximumExampleCount, centerData, quantileMin, quantileMax)).ToArray());
6 references to RobustScalingColumnOptions
Microsoft.ML.Data (5)
Transforms\NormalizeColumn.cs (1)
1210public static IColumnFunctionBuilder CreateBuilder(NormalizingEstimator.RobustScalingColumnOptions column, IHost host,
Transforms\NormalizeColumnDbl.cs (2)
2084public static IColumnFunctionBuilder Create(NormalizingEstimator.RobustScalingColumnOptions column, IHost host, DataViewType srcType, 2153public static IColumnFunctionBuilder Create(NormalizingEstimator.RobustScalingColumnOptions column, IHost host, VectorDataViewType srcType,
Transforms\NormalizeColumnSng.cs (2)
2248public static IColumnFunctionBuilder Create(NormalizingEstimator.RobustScalingColumnOptions column, IHost host, DataViewType srcType, 2315public static IColumnFunctionBuilder Create(NormalizingEstimator.RobustScalingColumnOptions column, IHost host, VectorDataViewType srcType,
Microsoft.ML.Transforms (1)
NormalizerCatalog.cs (1)
353var columnOptions = new NormalizingEstimator.RobustScalingColumnOptions(outputColumnName, inputColumnName, maximumExampleCount, centerData, quantileMin, quantileMax);