5 references to DeltaOutsideContraction
Microsoft.ML.Sweeper (5)
Algorithms\NelderMead.cs (5)
92
env.CheckUserArg(0 < options.
DeltaOutsideContraction
, nameof(options.
DeltaOutsideContraction
), "Must be greater than 0");
93
env.CheckUserArg(options.DeltaReflection > options.
DeltaOutsideContraction
, nameof(options.DeltaReflection), "Must be greater than " + nameof(options.
DeltaOutsideContraction
));
206
nextPoint = GetNewPoint(_centroid, _worst.Value, _args.
DeltaOutsideContraction
);