Class P3C.Par

  • All Implemented Interfaces:
    elki.utilities.optionhandling.Parameterizer
    Enclosing class:
    P3C

    public static class P3C.Par
    extends java.lang.Object
    implements elki.utilities.optionhandling.Parameterizer
    Parameterization class.
    Author:
    Florian Nuecke
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected double alpha
      Parameter for the chi squared test threshold.
      static elki.utilities.optionhandling.OptionID ALPHA_THRESHOLD_ID
      Parameter for the chi squared test threshold.
      static elki.utilities.optionhandling.OptionID EM_DELTA_ID
      Threshold when to stop EM iterations.
      protected double emDelta
      Threshold when to stop EM iterations.
      static elki.utilities.optionhandling.OptionID MAX_EM_ITERATIONS_ID
      Maximum number of iterations for the EM step.
      protected int maxEmIterations
      Maximum number of iterations for the EM step.
      static elki.utilities.optionhandling.OptionID MIN_CLUSTER_SIZE_ID
      Minimum cluster size for noise flagging.
      protected int minClusterSize
      Minimum cluster size for noise flagging.
      static elki.utilities.optionhandling.OptionID POISSON_THRESHOLD_ID
      Parameter for the poisson test threshold.
      protected double poissonThreshold
      Parameter for the poisson test threshold.
    • Constructor Summary

      Constructors 
      Constructor Description
      Par()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void configure​(elki.utilities.optionhandling.parameterization.Parameterization config)  
      P3C make()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • ALPHA_THRESHOLD_ID

        public static final elki.utilities.optionhandling.OptionID ALPHA_THRESHOLD_ID
        Parameter for the chi squared test threshold.
      • POISSON_THRESHOLD_ID

        public static final elki.utilities.optionhandling.OptionID POISSON_THRESHOLD_ID
        Parameter for the poisson test threshold.
      • MAX_EM_ITERATIONS_ID

        public static final elki.utilities.optionhandling.OptionID MAX_EM_ITERATIONS_ID
        Maximum number of iterations for the EM step.
      • EM_DELTA_ID

        public static final elki.utilities.optionhandling.OptionID EM_DELTA_ID
        Threshold when to stop EM iterations.
      • MIN_CLUSTER_SIZE_ID

        public static final elki.utilities.optionhandling.OptionID MIN_CLUSTER_SIZE_ID
        Minimum cluster size for noise flagging. (Not existant in the original publication).
      • alpha

        protected double alpha
        Parameter for the chi squared test threshold. While statistical values such as 0.01 are a good choice, we found the need to modify this parameter in our experiments.
      • poissonThreshold

        protected double poissonThreshold
        Parameter for the poisson test threshold.
      • maxEmIterations

        protected int maxEmIterations
        Maximum number of iterations for the EM step.
      • emDelta

        protected double emDelta
        Threshold when to stop EM iterations.
      • minClusterSize

        protected int minClusterSize
        Minimum cluster size for noise flagging. (Not existant in the original publication).
    • Constructor Detail

      • Par

        public Par()
    • Method Detail

      • configure

        public void configure​(elki.utilities.optionhandling.parameterization.Parameterization config)
        Specified by:
        configure in interface elki.utilities.optionhandling.Parameterizer
      • make

        public P3C make()
        Specified by:
        make in interface elki.utilities.optionhandling.Parameterizer