4

我正在使用 weka kmeans 分类器,我已经建立了一个模型。现在我想对每个质心的中心值进行聚类。我在 weka UI 上得到它

Attribute    Full Data          0          1
               (48836)    (39469)     (9367)
============================================
tt            428.6238   514.1345    68.3143

如何使用 weka java jar 获取它?

我的 weka 集群训练集只有一个属性。

要获取属性名称,我会: String attname =clusterCenters.get(0).attribute(0).name();

如何获得集群中心的价值?

4

1 回答 1

7

当您调用方法getClusterCentroids()时,SimpleKMeans您会得到一个Instances对象(在 weka-3-6-8 中)。这是一组代表您的集群中心的实例(每个指定集群一个)。

SimpleKMeans kmeans = ...
// your code
...
Instances instances = kmeans.getClusterCentroids();

一旦我们有了一组实例(质心),我们可以通过 来猜测它的大小numInstances(),使用以下方式遍历它们instance(int index)并获取它们的值double value(int attIndex)

for ( int i = 0; i < instances.numInstances(); i++ ) {
    // for each cluster center
    Instance inst = instances.instance( i );
    // as you mentioned, you only had 1 attribute
    // but you can iterate through the different attributes
    double value = inst.value( 0 );
    System.out.println( "Value for centroid " + i + ": " + value );
}

仅此而已。我还没有编译代码,但我就是这样做的。

于 2013-01-08T07:31:42.910 回答