在此处制作KMeans群集算法: 卡在列表平等上
#clusters = [[],[]]
prevclusters = list(clusters) # Making a new list using clusters elements.
.....
clusters[loc].append(inputs[i]) # Modifying clusters in a for loop
....
# Now, clusters = [[[1, 1], [1, 2]], [[3, 7], [4, 5], [5, 5]]]
if prevclusters == clusters: # Gives True, why ?
答案 0 :(得分:5)
在loc
中的cluster
编辑项目时,两个列表仍然引用已修改的相同子列表。创建copy.deepcopy
时,您可能需要prevclusters
列表:
from copy import deepcopy
prevclusters = deepcopy(clusters)