登录
首页 » Python » Clustering

Clustering

于 2019-05-16 发布
0 302
下载积分: 1 下载次数: 8

代码说明:

说明:  1) 使用凝聚型层次聚类算法(即最小生成树算法)对所有数据点进行聚类,最后聚成3类。相异度定义方法可选择single linkage、complete linkage、average linkage或者average group linkage中任意一种。 2) 使用C-Means算法对所有数据点进行聚类。C=3。 任务2(必做): 使用高斯混合模型(GMM)聚类算法对所有数据点进行聚类。C=3。并请给出得到的混合模型参数(包括比例??、均值??和协方差Σ)。 任务3(全做): 1) 参考数据文件第三列的类标签,使用聚类有效性评价的外部方法Normalized Mutual Information指标,分别计算任务1和任务2聚类结果的有效性。 2) 使用聚类有效性评价的内部方法Xie-Beni指标,分别计算任务1和任务2聚类结果的有效性。(The main results are as follows: 1) the condensed hierarchical clustering algorithm (that is, the minimum spanning tree algorithm) is used to cluster all the data points, and finally it is grouped into three categories. Any of the single linkage,complete linkage,average linkage or average group linkage methods can be selected for the definition of dissimilarity. 2) using C-Means algorithm to cluster all data points. C = 3.)

文件列表:

NMI.py, 2072 , 2018-12-29
readData.py, 1059 , 2018-12-28
Xie_Beni.py, 959 , 2019-01-01
agens.py, 2966 , 2018-12-30
cmeans.py, 3383 , 2019-01-01
dataSet.xlsx, 22172 , 2018-11-02
GMM.py, 5052 , 2018-12-29
graph.py, 530 , 2018-12-28

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 复杂网络中基本网络模型的matlab实现
    Matlab下复杂网络基本模型生成代码,Matlab下复杂网络生成各种可用的复杂网络模型。(Matlab Network generalization)
    2019-03-12 15:44:01下载
    积分:1
  • IEEECForm121302pdf_1
    Describe: Then a voice feature extraction procedures source, in addition to containing matrix and vector operations, it also includes many voice feature extraction algorithm, including : Formant (formant) extraction
    2010-12-07 08:49:26下载
    积分:1
  • 频分复用通信模型matlab仿真研究
    说明:  频分复用(Frequency division multiplexing,FDM)通信模型仿真研究。 FDM系统复用和解复用原理,编程实现FDM通信系统。(Simulation study of frequency division multiplexing communication model. FDM system multiplexing and demultiplexing principle, programming FDM communication system.)
    2021-03-14 20:14:42下载
    积分:1
  • pink_noise
    1/f噪声生成程序,由matlab语言实现,1/f噪声又成为pink噪声( This function creates noise with a 1/f spectrum. The noise is then phase modulated so that it can be mixed with a signal to simulate pink noise in the original signal. The noise is specified in power per hertz at frequency f0, relative to the power in the carrier.)
    2021-03-30 10:29:10下载
    积分:1
  • Modbus.X
    说明:  modbus protocol pic18f demo
    2020-06-08 12:22:28下载
    积分:1
  • 本文件为VB公共模块,最常用的字母API FAC…
    此文档为VB公共模块,封了多数常用的API,方便VB开发人员调用。包括注册表操作、磁盘、网络、窗体、文件等操作的API。模块内有简单使用说明。-this document for public VB module, the most commonly used letters of API to facilitate VB developers call. Including the registry operation, disk, network, forms, documents, etc API. A simple module for use.
    2022-07-24 09:16:59下载
    积分:1
  • C#获取网页源代码
    C#获取网页源代码,发送Http请求并接收Http应答,主要学习下通过输入网址URL后,如何获取并显示网页的源代码。
    2022-09-02 20:20:02下载
    积分:1
  • 读者写者问题
    说明:  1、定义一个数据缓存buffer及用于实现同步互斥的信号量。 2、定义一个读者函数: ?当有写者在占用buffer时,读者应该等待,直到写者不再使用该buffer。 ?当有其他读者在占用buffer时,读者可对buffer进行读取操作。 ?当buffer中有数据时,则从其中读取一个数据,并显示然后退出。 ?当buffer中没有数据时,应等待,直到buffer中有数据可读。 3、定义一个写者函数 ?当有读者在占用buffer时,写者应该等待,直到所有的读者都退出为止。 ?当有其他写者占用buffer时,该写者应该等待,直到占用buffer的写者退出为止。 ?当buffer有空闲时,写者应该在buffer中写入一个数据并退出。 ?当buffer满时,写者应该等待,直到buffer有空闲为止。 4、定义主函数,在其中可以任意创建读者与写者。 可根据用户输入创建读者或写者进程(线程)。(1. Define a data buffer and semaphores for synchronization and mutual exclusion. 2. Define a reader function: When a writer is occupying the buffer, the reader should wait until the writer no longer uses the buffer. When other readers occupy the buffer, they can read the buffer. When there is data in the buffer, read a data from it, display and exit. When there is no data in the buffer, wait until the data in the buffer is readable. 3. Define a writer function When a reader is occupying the buffer, the writer should wait until all readers quit. When other writers occupy the buffer, the writer should wait until the writer who occupies the buffer exits.)
    2019-12-27 18:49:46下载
    积分:1
  • 这是一个简单的迷宫程序,我花费了一天的时间写的
    这是一个简单的迷宫程序,我花费了一天的时间写的-This a simple maze procedure, I spent a day of time to write!
    2022-02-03 05:39:28下载
    积分:1
  • layer
    说明:  cad图层显示、关闭、冻结等快捷命令,非常好用(CAD layer display, close, freeze and other shortcut commands, very useful)
    2020-06-21 17:20:01下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载