3 writes to LogBase
Microsoft.ML.AutoML (3)
PipelineSuggesters\PipelineSuggester.cs (2)
154LogBase = fp.IsLogScale, 173LogBase = lp.IsLogScale
Sweepers\Parameters.cs (1)
33LogBase = false;
12 references to LogBase
Microsoft.ML.AutoML (12)
Sweepers\Parameters.cs (12)
215Runtime.Contracts.Assert(!args.LogBase || args.Min > 0, "min must be positive if log scale is used"); 216Runtime.Contracts.Assert(!args.LogBase || args.StepSize == null || args.StepSize > 1, "StepSize must be greater than 1 if log scale is used"); 217Runtime.Contracts.Assert(args.LogBase || args.StepSize == null || args.StepSize > 0, "StepSize must be greater than 0 if linear scale is used"); 225if (_args.LogBase) 255if (_args.LogBase) 311if (_args.LogBase) 341Runtime.Contracts.Assert(!args.LogBase || args.Min > 0, "min must be positive if log scale is used"); 342Runtime.Contracts.Assert(!args.LogBase || args.StepSize == null || args.StepSize > 1, "StepSize must be greater than 1 if log scale is used"); 343Runtime.Contracts.Assert(args.LogBase || args.StepSize == null || args.StepSize > 0, "StepSize must be greater than 0 if linear scale is used"); 351if (_args.LogBase) 373if (_args.LogBase) 429if (_args.LogBase)