def kMeansClustering(x,k): # Convert list into numpy format conv = np.asarray(x) # Compute the centroids centroids = kmeans(conv,k,iter=10)[0] # Relabel the ...
確定! 回上一頁