接口 KBinsDiscretizerParams<T>

    • 字段概要

      字段 
      修饰符和类型 字段 说明
      static String KMEANS  
      static org.apache.flink.ml.param.Param<Integer> NUM_BINS  
      static String QUANTILE  
      static org.apache.flink.ml.param.Param<String> STRATEGY
      Supported options to define the widths of the bins are listed as follows.
      static org.apache.flink.ml.param.Param<Integer> SUB_SAMPLES  
      static String UNIFORM  
      • 从接口继承的字段 org.apache.flink.ml.common.param.HasInputCol

        INPUT_COL
      • 从接口继承的字段 org.apache.flink.ml.common.param.HasOutputCol

        OUTPUT_COL
    • 方法概要

      所有方法 实例方法 默认方法 
      修饰符和类型 方法 说明
      default int getNumBins()  
      default String getStrategy()  
      default int getSubSamples()  
      default T setNumBins​(int value)  
      default T setStrategy​(String value)  
      default T setSubSamples​(Integer value)  
      • 从接口继承的方法 org.apache.flink.ml.common.param.HasInputCol

        getInputCol, setInputCol
      • 从接口继承的方法 org.apache.flink.ml.common.param.HasOutputCol

        getOutputCol, setOutputCol
      • 从接口继承的方法 org.apache.flink.ml.param.WithParams

        get, getParam, getParamMap, set
    • 字段详细资料

      • STRATEGY

        static final org.apache.flink.ml.param.Param<String> STRATEGY
        Supported options to define the widths of the bins are listed as follows.
        • uniform: all bins in each feature have identical widths.
        • quantile: all bins in each feature have the same number of points.
        • kmeans: values in each bin have the same nearest center of a 1D kmeans cluster.
      • NUM_BINS

        static final org.apache.flink.ml.param.Param<Integer> NUM_BINS
      • SUB_SAMPLES

        static final org.apache.flink.ml.param.Param<Integer> SUB_SAMPLES
    • 方法详细资料

      • getStrategy

        default String getStrategy()
      • setStrategy

        default T setStrategy​(String value)
      • getNumBins

        default int getNumBins()
      • setNumBins

        default T setNumBins​(int value)
      • getSubSamples

        default int getSubSamples()
      • setSubSamples

        default T setSubSamples​(Integer value)