使用CCORE实现进行pyclustering

时间:2017-06-20 17:46:24

标签: python cluster-computing

在网站pyclustering上,作者提到:

  

只能使用python代码实现或CCORE   (C / C ++)使用特殊标志实现。

但是没有任何示例如何使用特殊标志。 有谁知道如何使用它?

1 个答案:

答案 0 :(得分:0)

github page of the library一致,对于将要使用的特定算法实例,参数'ccore_flag'应为True:

# read input data
input_data = read_sample(FCPS_SAMPLES.SAMPLE_LSUN);

# use ccore_flag parameter to use ccore.so (or ccore.dll) in case of CURE algorithm.
cure_instance = cure(input_data, 3, ccore_flag= True);

# use ccore_flag for DBSCAN algorithm (the last argument).
dbscan_instance = dbscan(input_data, 0.5, 3, True);