Class LossTukey

java.lang.Object
org.ddogleg.optimization.loss.LossFunctionBase
org.ddogleg.optimization.loss.LossTukey
Direct Known Subclasses:
LossTukey.Function, LossTukey.Gradient

public abstract class LossTukey extends LossFunctionBase
Tukey loss (Tukey's biweight function) has similar behavior to LossHuber but is less sensitive to outliers because they contribute nothing to the loss.
 l(c) = c2/6(1 - [1 - (r/c)**2]**3)   if |r| <= c
        c2/6                          otherwise
 
  • Constructor Details

    • LossTukey

      protected LossTukey(double threshold)