1

我正在使用carrot2 集群引擎(通过Java API),并且已经为我的数据库中的一些虚拟数据获得了集群。我想知道如何在控制台应用程序或 Web 应用程序中以人类可读的形式显示它?

目前,我的集群采用这种格式:

最终列表 Cluster_List=result.getClusters();

结果的类型为 "ProcessingResult" ,在 Carrot2 API 中定义。

如果我尝试使用一种天真的方法打印出 Cluster_List 的内容,我将得到对象的地址。请指导我设置一种显示集群内容的方法——标签、内容,如果可能的话——分数!

干杯! 阿内鲁德

4

1 回答 1

1

Here is a utility Java class we're using to display clusters in the console:

https://github.com/carrot2/carrot2/blob/master/applications/carrot2-examples/examples/org/carrot2/examples/ConsoleFormatter.java

于 2013-05-16T13:58:40.463 回答