1 write to _args
Microsoft.ML.Sweeper (1)
Algorithms\NelderMead.cs (1)
98_args = options;
10 references to _args
Microsoft.ML.Sweeper (10)
Algorithms\NelderMead.cs (10)
157var nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaReflection); 158if (OutOfBounds(nextPoint) && _args.ProjectInbounds) 161nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction); 193nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaExpansion); 194if (OutOfBounds(nextPoint) && _args.ProjectInbounds) 197nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction); 206nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaOutsideContraction); 212nextPoint = GetNewPoint(_centroid, _worst.Value, _args.DeltaInsideContraction); 288if (SimplexDiameter() < _args.StoppingSimplexDiameter) 405var newPoint = GetNewPoint(_secondWorst.Value, sortedVertices[i].Value, -_args.GammaShrink);