Class AbstractProjectedClustering.Par

  • All Implemented Interfaces:
    elki.utilities.optionhandling.Parameterizer
    Direct Known Subclasses:
    ORCLUS.Par, PROCLUS.Par
    Enclosing class:
    AbstractProjectedClustering<R extends Clustering<?>>

    public abstract static class AbstractProjectedClustering.Par
    extends java.lang.Object
    implements elki.utilities.optionhandling.Parameterizer
    Parameterization class.
    Author:
    Erich Schubert
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected int k
      The number of clusters to find
      protected int k_i
      Multiplier for the number of initial seeds
      static elki.utilities.optionhandling.OptionID K_I_ID
      Parameter to specify the multiplier for the initial number of seeds, must be an integer greater than 0.
      static elki.utilities.optionhandling.OptionID K_ID
      Parameter to specify the number of clusters to find, must be an integer greater than 0.
      protected int l
      Dimensionality of clusters to find
      static elki.utilities.optionhandling.OptionID L_ID
      Parameter to specify the dimensionality of the clusters to find, must be an integer greater than 0.
    • Constructor Summary

      Constructors 
      Constructor Description
      Par()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface elki.utilities.optionhandling.Parameterizer

        configure, make
    • Field Detail

      • K_ID

        public static final elki.utilities.optionhandling.OptionID K_ID
        Parameter to specify the number of clusters to find, must be an integer greater than 0.
      • K_I_ID

        public static final elki.utilities.optionhandling.OptionID K_I_ID
        Parameter to specify the multiplier for the initial number of seeds, must be an integer greater than 0.
      • L_ID

        public static final elki.utilities.optionhandling.OptionID L_ID
        Parameter to specify the dimensionality of the clusters to find, must be an integer greater than 0.
      • k

        protected int k
        The number of clusters to find
      • k_i

        protected int k_i
        Multiplier for the number of initial seeds
      • l

        protected int l
        Dimensionality of clusters to find
    • Constructor Detail

      • Par

        public Par()