最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

基于歐式距離的聚類算法的Kmeans作業(yè)

2023-05-19 14:08 作者:玟玟的大寶貝  | 我要投稿

訪問【W(wǎng)RITE-BUG數(shù)字空間】_[內(nèi)附完整源碼和文檔]

基于歐式距離的聚類算法,其認為兩個目標的距離越近,相似度越大。 該實驗產(chǎn)生的點為二維空間中的點。

環(huán)境配置

java環(huán)境,使用原生的Java UI組件JPanel和JFrame

算法原理

基于歐式距離的聚類算法,其認為兩個目標的距離越近,相似度越大。

該實驗產(chǎn)生的點為二維空間中的點。

歐式距離

n維空間中的兩個點X,Y

$dist(X, Y) = \sqrt{\sum_{i = 1}^{n} (x_{i} - y_{i})^{2}}$

算法過程

  1. 選擇k,聚類的數(shù)量。

  2. 選擇k個點作為聚類中心。

  3. 對每個樣本點計算到k個聚類中心的距離,采用的是歐氏距離,將其分類到距離最近的類別中。

  4. 根據(jù)每個類別,計算被分類在該類別中的所有點的中心。

  5. 如果計算出來的中心和聚類中心相同,則退出循環(huán),否則以新的計算出來的中心為每個聚類的聚類中心,不斷重復3 - 4步。

核心代碼

設定K

/*Step按鈕的監(jiān)聽器*/ jButton2.addActionListener(new ActionListener() { ? ?public void actionPerformed(ActionEvent ae) { ? ? ? ?painting.assign(); ? ? ? ?painting.updateCentroids(); ? ? ? ?/*算法終止的話讓按鈕變灰并提示算法結(jié)束*/ ? ? ? ?if (painting.stop(num++)) { ? ? ? ? ? ?jButton2.setText("End"); ? ? ? ? ? ?jButton2.setEnabled(false); ? ? ? ?} ? ? ? ?painting.repaint(); ? ?} });

計算歐式距離

/*歐式距離*/ double Euc(Point p1, Point p2) { ? ?double distance = 0.0; ? ?for (int i = 0; i < Dimension; ++i) ? ? ? ?distance += (p1.x[i] - p2.x[i]) * (p1.x[i] - p2.x[i]); ? ?return Math.sqrt(distance); }

更新中心點

/*更新中心點*/ void updateCentroid(int clusterNum) { ? ?//將newCluster數(shù)組的那個中心點置空 ? ?for (int i = 0; i < Dimension; ++i) ? ? ? ?newCluster[clusterNum].x[i] = 0; ? ?int clusterSize = 0; ? ?for (int i = 0; i < Nodes; ++i) ? ? ? ?if (p[i].cluster == clusterNum) { ? ? ? ? ? ?//這個簇中有多少點 ? ? ? ? ? ?clusterSize++; ? ? ? ? ? ?for (int j = 0; j < Dimension; ++j) ? ? ? ? ? ? ? ?newCluster[clusterNum].x[j] += p[i].x[j]; ? ? ? ?} ? ?if (clusterSize == 0) ? ? ? ?return; ? ?for (int i = 0; i < Dimension; ++i) ? ? ? ?newCluster[clusterNum].x[i] /= (double) clusterSize; }

計算每個點的分類

/*分配數(shù)據(jù)點到哪個簇*/ void assignPoint(int x) { ? ?double minDistance = 99999999; ? ?int nodeClassify = 1; ? ?for (int i = 0; i < K; ++i) { ? ? ? ?//計算歐式距離 ? ? ? ?double newDistance = Euc(p[x], newCluster[i]); ? ? ? ?if (newDistance < minDistance) { ? ? ? ? ? ?minDistance = newDistance; ? ? ? ? ? ?nodeClassify = i; ? ? ? ?} ? ?} ? ?p[x].cluster = nodeClassify; }

判斷終止條件

/*判斷算法是否終止*/ Boolean stop(int currentTime) { ? ?//超過迭代次數(shù) ? ?if (currentTime > range) { ? ? ? ?int num = 1; ? ? ? ?System.out.println("超過迭代次數(shù)"); ? ? ? ?for (Point i : oldCluster) { ? ? ? ? ? ?System.out.println("中心點" + num + "坐標:(" + i.x[0] + "," + i.x[1] + ")"); ? ? ? ? ? ?num++; ? ? ? ?} ? ? ? ?return true; ? ?} ? ?/*如果每一個中心點都與上一次的中心點相同,則算法終止,否則更新oldCentroid*/ ? ?for (int i = 0; i < K; ++i) ? ? ? ?if (!samePoint(oldCluster[i], newCluster[i])) { ? ? ? ? ? ?for (int j = 0; j < K; ++j) ? ? ? ? ? ? ? ?copy(oldCluster[j], newCluster[j]); ? ? ? ? ? ?return false; ? ? ? ?} ? ?int num = 1; ? ?System.out.println("迭代完成"); ? ?for (Point i : oldCluster) { ? ? ? ?System.out.println("中心點" + num + "坐標:(" + i.x[0] + "," + i.x[1] + ")"); ? ? ? ?num++; ? ?} ? ?return true; }


基于歐式距離的聚類算法的Kmeans作業(yè)的評論 (共 條)

分享到微博請遵守國家法律
习水县| 读书| 宝山区| 慈溪市| 登封市| 射阳县| 揭西县| 同心县| 襄汾县| 静宁县| 石家庄市| 新源县| 通许县| 阳东县| 桃园县| 饶阳县| 于都县| 固安县| 红原县| 灵山县| 保定市| 双桥区| 双峰县| 聊城市| 丰城市| 芜湖市| 鄂伦春自治旗| 岚皋县| 从江县| 济源市| 乌拉特中旗| 渭源县| 揭西县| 巴东县| 乐清市| 满洲里市| 谷城县| 枣强县| 台中县| 长沙市| 宁安市|