1 write to _centroid
Microsoft.ML.Sweeper (1)
Algorithms\NelderMead.cs (1)
314
_centroid
= GetCentroid();
7 references to _centroid
Microsoft.ML.Sweeper (7)
Algorithms\NelderMead.cs (7)
157
var nextPoint = GetNewPoint(
_centroid
, _worst.Value, _args.DeltaReflection);
161
nextPoint = GetNewPoint(
_centroid
, _worst.Value, _args.DeltaInsideContraction);
193
nextPoint = GetNewPoint(
_centroid
, _worst.Value, _args.DeltaExpansion);
197
nextPoint = GetNewPoint(
_centroid
, _worst.Value, _args.DeltaInsideContraction);
206
nextPoint = GetNewPoint(
_centroid
, _worst.Value, _args.DeltaOutsideContraction);
212
nextPoint = GetNewPoint(
_centroid
, _worst.Value, _args.DeltaInsideContraction);
300
Contracts.Assert(
_centroid
!= null);