Class EMOutlier.Par<V extends NumberVector>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected double delta
      Stopping threshold
      protected int k
      Number of clusters.
      protected int maxiter
      Maximum number of iterations.
      protected EMClusterModelFactory<V,​?> mfactory
      Cluster model factory.
      protected int miniter
      Minimum number of iterations.
      (package private) double prior
      Prior to enable MAP estimation (use 0 for MLE)
    • Constructor Summary

      Constructors 
      Constructor Description
      Par()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void configure​(Parameterization config)
      Configure the class.
      EMOutlier<V> make()
      Make an instance after successful configuration.
      • Methods inherited from class java.lang.Object

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

      • k

        protected int k
        Number of clusters.
      • delta

        protected double delta
        Stopping threshold
      • miniter

        protected int miniter
        Minimum number of iterations.
      • maxiter

        protected int maxiter
        Maximum number of iterations.
      • prior

        double prior
        Prior to enable MAP estimation (use 0 for MLE)
    • Constructor Detail

      • Par

        public Par()
    • Method Detail

      • configure

        public void configure​(Parameterization config)
        Description copied from interface: Parameterizer
        Configure the class.

        Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.

        Specified by:
        configure in interface Parameterizer
        Parameters:
        config - Parameterization
      • make

        public EMOutlier<V> make()
        Description copied from interface: Parameterizer
        Make an instance after successful configuration.

        Note: your class should return the exact type, only this very broad interface should use Object as return type.

        Specified by:
        make in interface Parameterizer
        Returns:
        a new instance