Java 类名:com.alibaba.alink.pipeline.clustering.BisectingKMeans
Python 类名:BisectingKMeans

功能介绍

二分k均值算法是k-means聚类算法的一个变体,主要是为了改进k-means算法随机选择初始质心的随机性造成聚类结果不确定性的问题.

参数说明

名称 中文名称 描述 类型 是否必须? 取值范围 默认值
predictionCol 预测结果列名 预测结果列名 String
vectorCol 向量列名 向量列对应的列名 String
distanceType 距离度量方式 聚类使用的距离类型 String “EUCLIDEAN”, “COSINE” “EUCLIDEAN”
k 聚类中心点数目 聚类中心点数目 Integer 4
maxIter 最大迭代步数 最大迭代步数,默认为 10。 Integer 10
minDivisibleClusterSize 最小可分裂的聚类大小 最小可分裂的聚类大小 Integer 1
modelFilePath 模型的文件路径 模型的文件路径 String null
overwriteSink 是否覆写已有数据 是否覆写已有数据 Boolean false
predictionDetailCol 预测详细信息列名 预测详细信息列名 String
randomSeed 随机数种子 随机数种子 Integer 0
reservedCols 算法保留列名 算法保留列 String[] null
numThreads 组件多线程线程个数 组件多线程线程个数 Integer 1
modelStreamFilePath 模型流的文件路径 模型流的文件路径 String null
modelStreamScanInterval 扫描模型路径的时间间隔 描模型路径的时间间隔,单位秒 Integer 10
modelStreamStartTime 模型流的起始时间 模型流的起始时间。默认从当前时刻开始读。使用yyyy-mm-dd hh:mm:ss.fffffffff格式,详见Timestamp.valueOf(String s) String null

代码示例

Python 代码

  1. from pyalink.alink import *
  2. import pandas as pd
  3. useLocalEnv(1)
  4. df = pd.DataFrame([
  5. [0, "0 0 0"],
  6. [1, "0.1,0.1,0.1"],
  7. [2, "0.2,0.2,0.2"],
  8. [3, "9 9 9"],
  9. [4, "9.1 9.1 9.1"],
  10. [5, "9.2 9.2 9.2"]
  11. ])
  12. inOp = BatchOperator.fromDataframe(df, schemaStr='id int, vec string')
  13. kmeans = BisectingKMeans()\
  14. .setVectorCol("vec")\
  15. .setK(2)\
  16. .setPredictionCol("pred")
  17. kmeans.fit(inOp)\
  18. .transform(inOp)\
  19. .print()

Java 代码

  1. import org.apache.flink.types.Row;
  2. import com.alibaba.alink.operator.batch.BatchOperator;
  3. import com.alibaba.alink.operator.batch.source.MemSourceBatchOp;
  4. import com.alibaba.alink.pipeline.clustering.BisectingKMeans;
  5. import org.junit.Test;
  6. import java.util.Arrays;
  7. import java.util.List;
  8. public class BisectingKMeansTest {
  9. @Test
  10. public void testBisectingKMeans() throws Exception {
  11. List <Row> df = Arrays.asList(
  12. Row.of(0, "0 0 0"),
  13. Row.of(1, "0.1,0.1,0.1"),
  14. Row.of(2, "0.2,0.2,0.2"),
  15. Row.of(3, "9 9 9"),
  16. Row.of(4, "9.1 9.1 9.1"),
  17. Row.of(5, "9.2 9.2 9.2")
  18. );
  19. BatchOperator <?> inOp = new MemSourceBatchOp(df, "id int, vec string");
  20. BisectingKMeans kmeans = new BisectingKMeans()
  21. .setVectorCol("vec")
  22. .setK(2)
  23. .setPredictionCol("pred");
  24. kmeans.fit(inOp)
  25. .transform(inOp)
  26. .print();
  27. }
  28. }

运行结果

预测结果

| id | vec | pred | | —- | —- | —- |

| 0 | 0 0 0 | 0 |

| 1 | 0.1,0.1,0.1 | 0 |

| 2 | 0.2,0.2,0.2 | 0 |

| 3 | 9 9 9 | 1 |

| 4 | 9.1 9.1 9.1 | 1 |

| 5 | 9.2 9.2 9.2 | 1 |