7 instantiations of SweepableLongParamAttribute
Microsoft.ML.Core (1)
EntryPoints\ModuleArgs.cs (1)
487new SweepableLongParamAttribute(Name, Min, Max, StepSize ?? -1, NumSteps ?? -1, IsLogScale) { RawValue = RawValue, Frozen = Frozen };
Microsoft.ML.FastTree (1)
FastTreeArguments.cs (1)
515[TlcModule.SweepableLongParamAttribute("NumLeaves", 2, 128, isLogScale: true, stepSize: 4)]
Microsoft.ML.LightGbm (1)
LightGbmTrainerBase.cs (1)
106[TlcModule.SweepableLongParamAttribute("NumLeaves", 2, 128, isLogScale: true, stepSize: 4)]
Microsoft.ML.StandardTrainers (4)
FactorizationMachine\FactorizationMachineTrainer.cs (2)
119[TlcModule.SweepableLongParam(1, 100)] 126[TlcModule.SweepableLongParam(4, 100)]
Standard\LogisticRegression\LbfgsPredictorBase.cs (1)
84[TlcModule.SweepableLongParamAttribute("MaxIterations", 1, int.MaxValue)]
Standard\Online\OnlineLinear.cs (1)
29[TlcModule.SweepableLongParamAttribute("NumIterations", 1, 100, stepSize: 10, isLogScale: true)]
2 references to SweepableLongParamAttribute
Microsoft.ML.EntryPoints (2)
JsonUtils\JsonManifestUtils.cs (2)
229if (fieldInfo.GetCustomAttributes(typeof(TlcModule.SweepableLongParamAttribute), false).FirstOrDefault() is TlcModule.SweepableLongParamAttribute slpAttr)