@@ -271,10 +271,10 @@ public static NormalizeTransform Create(IHostEnvironment env, MinMaxArguments ar
271271 /// <param name="name">Name of the output column.</param>
272272 /// <param name="source">Name of the column to be transformed. If this is null '<paramref name="name"/>' will be used.</param>
273273 /// /// <param name="useCdf">Whether to use CDF as the output.</param>
274- public static NormalizeTransform CreateMeanVarNormalizer ( IHostEnvironment env ,
275- IDataView input ,
276- string name ,
277- string source = null ,
274+ public static NormalizeTransform CreateMeanVarNormalizer ( IHostEnvironment env ,
275+ IDataView input ,
276+ string name ,
277+ string source = null ,
278278 bool useCdf = Defaults . MeanVarCdf )
279279 {
280280 var args = new MeanVarArguments ( )
@@ -313,10 +313,10 @@ public static NormalizeTransform Create(IHostEnvironment env, MeanVarArguments a
313313 /// <param name="name">Name of the output column.</param>
314314 /// <param name="source">Name of the column to be transformed. If this is null '<paramref name="name"/>' will be used.</param>
315315 /// /// <param name="useCdf">Whether to use CDF as the output.</param>
316- public static NormalizeTransform CreateLogMeanVarNormalizer ( IHostEnvironment env ,
317- IDataView input ,
318- string name ,
319- string source = null ,
316+ public static NormalizeTransform CreateLogMeanVarNormalizer ( IHostEnvironment env ,
317+ IDataView input ,
318+ string name ,
319+ string source = null ,
320320 bool useCdf = Defaults . LogMeanVarCdf )
321321 {
322322 var args = new LogMeanVarArguments ( )
@@ -347,10 +347,10 @@ public static NormalizeTransform Create(IHostEnvironment env, LogMeanVarArgument
347347 return func ;
348348 }
349349
350- public static NormalizeTransform CreateBinningNormalizer ( IHostEnvironment env ,
351- IDataView input ,
352- string name ,
353- string source = null ,
350+ public static NormalizeTransform CreateBinningNormalizer ( IHostEnvironment env ,
351+ IDataView input ,
352+ string name ,
353+ string source = null ,
354354 int numBins = Defaults . NumBins )
355355 {
356356 var args = new BinArguments ( )
@@ -381,12 +381,12 @@ public static NormalizeTransform Create(IHostEnvironment env, BinArguments args,
381381 return func ;
382382 }
383383
384- public static NormalizeTransform CreateSupervisedBinningNormalizer ( IHostEnvironment env ,
385- IDataView input ,
386- string labelColumn ,
387- string name ,
388- string source = null ,
389- int numBins = Defaults . NumBins ,
384+ public static NormalizeTransform CreateSupervisedBinningNormalizer ( IHostEnvironment env ,
385+ IDataView input ,
386+ string labelColumn ,
387+ string name ,
388+ string source = null ,
389+ int numBins = Defaults . NumBins ,
390390 int minBinSize = Defaults . MinBinSize )
391391 {
392392 var args = new SupervisedBinArguments ( )
0 commit comments