您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. k-means聚类算法

  2. k-means cluster algorithm 可用于三维点的聚类,附带demo,直接编译可见结果
  3. 所属分类:其它

    • 发布日期:2009-11-12
    • 文件大小:12kb
    • 提供者:flb0624
  1. K-means聚类算法c语言实现(支持任意维数数据和任意k值)

  2. K-means聚类算法c语言实现。样本数据从文件读入,支持任意维数数据和任意k值(k当然要小于样本数),同时可以防止分出空类。 为做作业原创
  3. 所属分类:C

    • 发布日期:2009-12-01
    • 文件大小:5kb
    • 提供者:crespo1864
  1. K-均值中心算法C++源代码有详细的程序说明

  2. K-均值中心算法C++char *f2a(double x, int width){ char cbuf[255]; char *cp; int i,k; int d,s; cp=fcvt(x,width,&d,&s); if (s) { strcpy(cbuf,"-"); } else { strcpy(cbuf," "); } /* endif */ if (d>0) { for (i=0; i<d; i++) { cbuf[i+1]=cp[i]; } /* endfor */
  3. 所属分类:其它

  1. k-mean聚类算法实现

  2. c++实现k-mean算法#include #include #include #include #include // FUNCTION PROTOTYPES // DEFINES #define SUCCESS 1 #define FAILURE 0 #define TRUE 1 #define FALSE 0 #define MAXVECTDIM 20 #define MAXPATTERN 20 #define MAXCLUSTER 10 char *f2a(double x,
  3. 所属分类:C

    • 发布日期:2010-09-22
    • 文件大小:837byte
    • 提供者:gnezedshi
  1. K-means算法源码

  2. K-means算法源码 This directory contains code implementing the K-means algorithm. Source code may be found in KMEANS.CPP. Sample data isfound in KM2.DAT. The KMEANS program accepts input consisting of vectors and calculates the given number of cluster ce
  3. 所属分类:其它

    • 发布日期:2010-12-10
    • 文件大小:3kb
    • 提供者:echolt
  1. k-means clustering 算法 用于机器学习和模式识别

  2. k-means clustering,聚类,用于机器学习和模式识别。 下面是英文介绍:In statistics and machine learning, k-means clustering is a method of cluster analysis which aims to partition n observations into k clusters in which each observation belongs to the cluster with the neares
  3. 所属分类:其它

    • 发布日期:2011-02-01
    • 文件大小:2kb
    • 提供者:welcome_andy
  1. Stanford Cluster 3.0

  2. Cluster was originally written by Michael Eisen while at Stanford University. We have modified the k-means clustering algorithm in Cluster, and extended the algorithm for Self-Organizing Maps to include two-dimensional rectangular grids.
  3. 所属分类:其它

    • 发布日期:2011-02-10
    • 文件大小:692kb
    • 提供者:jiwt
  1. Cluster 3.0 manual

  2. This is the manual for Cluster 3.0. Cluster was originally written by Michael Eisen while at Stanford University. We have modified the k-means clustering algorithm in Cluster, and extended the algorithm for Self-Organizing Maps to include two-dimens
  3. 所属分类:其它

    • 发布日期:2011-02-10
    • 文件大小:216kb
    • 提供者:jiwt
  1. k均值代码,已经部分实现

  2. K-mean的一些相关信息与代码,需要自己加入主函数
  3. 所属分类:其它

    • 发布日期:2011-02-28
    • 文件大小:6kb
    • 提供者:huangjun0210
  1. K-means source code

  2. k-means source code , patitioner n object int k cluster
  3. 所属分类:网络安全

    • 发布日期:2012-02-13
    • 文件大小:16kb
    • 提供者:zlggxx
  1. KMeans++ k均值++

  2. The k-means method is a widely used clustering technique that seeks to minimize the average squared distance between points in the same cluster. Although it offers no accuracy guarantees, its simplicity and speed are very appealing in practice. By a
  3. 所属分类:C/C++

    • 发布日期:2012-04-19
    • 文件大小:180kb
    • 提供者:xnview
  1. C++ 实现 K-means

  2. C++实现K-means,采用随机选取初始化的cluster center。附有详细的注释,容易理解。输入格式为:行数 列数 K值 输入的矩阵
  3. 所属分类:C++

    • 发布日期:2012-07-29
    • 文件大小:7kb
    • 提供者:loui3
  1. k-cluster样本数据

  2. 这是一个用于进行k-cluster实验的样本数据
  3. 所属分类:Python

    • 发布日期:2012-11-18
    • 文件大小:26kb
    • 提供者:csy463168656
  1. hadoop k-means算法实现(可直接命令行运行)

  2. hadoop k-means算法实现java工程的打包类,可直接在terminal中运行,运行命令为: $HADOOP_HOME/bin/hadoop jar ClusterDemo.jar main.Cluster 然后直接确定就可以看到提示的运行参数或者参考下面: +" \n" +"\t:输入文件路径\n" +"\t:输出文件路径\n" +"\t:初始中心路径\n" +"\t:临时输出文件路径\n" +"\t:循环最大次数\n" +"\t:聚类中心变化阈值\n" +"\t:聚
  3. 所属分类:Java

    • 发布日期:2013-05-10
    • 文件大小:12kb
    • 提供者:fansy1990
  1. K-means分类器matlab示例代码

  2. K-means分类器matlab示例代码 包括逐步扩大cluster的数目
  3. 所属分类:其它

    • 发布日期:2013-05-11
    • 文件大小:26kb
    • 提供者:wxyyxc1992
  1. K-Means 聚类算法 java实现

  2. k-means 的java实现,用解压缩打开可以看到源码, 有图形界面可以做测试,可以自定参数。 具体信息运行程序有会有system.out
  3. 所属分类:Java

    • 发布日期:2013-10-21
    • 文件大小:37kb
    • 提供者:lishikai500
  1. 遥感图像K-means Cluster.rar

  2. 基于K-means Cluster的遥感图像聚类
  3. 所属分类:其它

    • 发布日期:2014-02-14
    • 文件大小:409kb
    • 提供者:dapangwang
  1. cluster聚类工具

  2. 生物信息学cluster聚类工具Cluster的核心思想: 你的每一个样会包含一些列的数据,将这样的文件导入到cluster中, cluster会根据数据先计算出每个样的距离(涉及8种计算方式),然后根据距离选择聚类的方式(分层,k-mer,SOM)。如果你需要计算PCA的话,就是另一种计算距离的方法。
  3. 所属分类:其它

    • 发布日期:2014-10-31
    • 文件大小:22kb
    • 提供者:shangjing2003
  1. K-means PPT

  2. 目標為把收集的資料分割成 k 個子集合,每一個子集合為一個群聚(cluster). 從收集的資料中隨機選定 k 個物件,當作個別群聚(cluster) 的平均數. 分配每一筆收集的資料到最接近的群聚(cluster) 裡. 計算每一個群聚(cluster) 裡的新平均數. 從複步驟2,直到物件分配情形恆定不變為止.
  3. 所属分类:专业指导

    • 发布日期:2009-04-23
    • 文件大小:67kb
    • 提供者:niari
  1. K-mean cluster算法 machine learning

  2. K-mean cluster算法 在machine learning中的matlab程序
  3. 所属分类:机器学习

    • 发布日期:2018-05-03
    • 文件大小:11mb
    • 提供者:qq_33172106
« 12 3 4 5 6 »