1 write to _args
Microsoft.ML.Sweeper (1)
Algorithms\KdoSweeper.cs (1)
99_args = options;
12 references to _args
Microsoft.ML.Sweeper (12)
Algorithms\KdoSweeper.cs (12)
113var numSweeps = Math.Min(numOfCandidates, _args.NumberInitialPopulation - prevRuns.Length); 117if (prevRuns.Length < _args.NumberInitialPopulation) 164if (history.Length > _args.HistoryLength) 210if (_spu.SampleUniform() <= _args.ProportionRandom) 227double[] categoryWeights = _args.LegacyDpBehavior 243if (!_args.Beta) 250double bandwidthScale = Math.Max(_args.MinimumMutationSpread, correctedVal); 251double[] stddevs = Enumerable.Repeat(_args.Simple ? 0.2 : bandwidthScale, mu.Length).ToArray(); 337weights[i] = _args.Simple ? Math.Pow(weights[i], Math.Min(Math.Sqrt(n), 100)) : Math.Pow(weights[i], _args.WeightRescalingPower * currentMaxPerf); 434if (bestK.Count < _args.HistoryLength || r.CompareTo(worst) > 0) 437if (bestK.Count > _args.HistoryLength)