如何设置"最佳回复"在使用c#的Sharepoint讨论中

时间:2018-05-25 15:09:56

标签: sharepoint

我在SharePoint上有一个讨论列表。它的问题很少,每个问题的回复都很少。

我想知道如何设置"最佳回复"使用c#。列表设置不包含最佳回复列。所以必须有其他方法来设置这个值。

我找不到有关此的更多信息。任何指针都非常有价值。

1 个答案:

答案 0 :(得分:0)

只是示例代码供您参考。

from sklearn.cluster import AffinityPropagation
from sklearn import metrics
from sklearn.datasets.samples_generator import make_blobs
# Generate sample data
centers = [[1, 1], [-1, -1], [1, -1]]
X, labels_true = make_blobs(n_samples=300, centers=centers, cluster_std=0.5,
                            random_state=0)
# Compute Affinity Propagation
af = AffinityPropagation(preference=-50).fit(X)
cluster_centers_indices = af.cluster_centers_indices_
labels = af.labels_