Skip to content

Commit 2e9dffc

Browse files
committed
K-Means
1 parent 5167652 commit 2e9dffc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -743,11 +743,11 @@ def predict(Theta1,Theta2,X):
743743
- 第一步:簇分配,随机选`K`个点作为中心,计算到这`K`个点的距离,分为`K`个簇
744744
- 第二步:移动聚类中心:重新计算每个****的中心,移动中心,重复以上步骤。
745745
- 如下图所示:
746-
- 随机分配的聚类中心
746+
- 随机分配的聚类中心
747747
![enter description here][34]
748-
- 重新计算聚类中心,移动一次
748+
- 重新计算聚类中心,移动一次
749749
![enter description here][35]
750-
- 最后`10`步之后的聚类中心
750+
- 最后`10`步之后的聚类中心
751751
![enter description here][36]
752752
- 计算每条数据到哪个中心最近实现代码:
753753
```
@@ -857,9 +857,9 @@ def runKMeans(X,initial_centroids,max_iters,plot_process):
857857
```
858858

859859
### 7、运行结果
860-
- 二维数据类中心的移动
860+
- 二维数据类中心的移动
861861
![enter description here][38]
862-
- 图片压缩
862+
- 图片压缩
863863
![enter description here][39]
864864

865865

0 commit comments

Comments
 (0)