CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - KNN 分类

搜索资源列表

  1. Knn

    1下载:
  2. K最近邻分类的代码,附有输入输出和程序使用说明。
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:15293
    • 提供者:胡芬芬
  1. KNN(CSHARP).rar

    0下载:
  2. 文本分类算法KNN的C#实现源码
  3. 所属分类:C#编程

    • 发布日期:2011-05-09
    • 文件大小:110583
    • 提供者:talonliu
  1. knn

    0下载:
  2. 在网站上下的一个MATLABknn分类程序-dfjaklsdjflkasd buhui
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:1404
    • 提供者:niuxiaoqiang
  1. KNNVB

    0下载:
  2. 最短距离法分类器VB实现,包括有详细例程说明-The shortest distance classifier VB to achieve, including a detailed descr iption routines
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:647846
    • 提供者:dong wei
  1. pattern-recognition-simulation

    0下载:
  2. 用mushrooms数据对模式识别课程讲述的各种模式分类方法[线性分类,Bayesian分类,Parzen窗,KNN]和特征选择和降维方法[PCA,LDA]进行了模拟,并给出了各类分类方法的结果,-It s the simulations about linear classification ,Bayesian ,Parzen and KNN of pattern recognition .And ,It gives the results.
  3. 所属分类:Other systems

    • 发布日期:2017-03-25
    • 文件大小:24908
    • 提供者:yuanna
  1. KNN

    0下载:
  2. 我用VC++编写的KNN分类器,希望对同学们的学习有帮助。-I use VC++ to prepare the KNN classifier, in the hope that the learning of students there to help.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-10
    • 文件大小:2497083
    • 提供者:赵小华
  1. benti

    0下载:
  2. knn分类程序,基于matlab开发,能实现对文本的分类,达到很好的分类效果,经过运行成功验证-knn classification procedures, based on matlab development, to achieve the classification of the text to achieve a good classification results, after running successfully verified
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:14637
    • 提供者:yilingzhu
  1. knn

    0下载:
  2. K=5的K近邻分类,训练样本集含有30个样本,矢量长度为5-K = 5 K-neighbor classification, the training sample set containing 30 samples, vector length of 5
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:297072
    • 提供者:刘晓红
  1. knn

    0下载:
  2. knn算法,用kNN算法对鸢尾花数据进行了分类-knn algorithm, kNN algorithm with a classification of the iris data
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:372987
    • 提供者:hqj
  1. finallyliuyuClassifier

    0下载:
  2. 文本分类软件c++(中科大分词软件+knn分类器)-Text classification software c++ (USTC segmentation software+ knn classifier)
  3. 所属分类:Windows Develop

    • 发布日期:2017-06-12
    • 文件大小:20323412
    • 提供者:赵辉
  1. kNN

    0下载:
  2. 这是一个Knn分类算法的Python实现,Matlab中有类似的函数-knn classifer
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:576
    • 提供者:viomag
  1. knn分类

    0下载:
  2. 进行K近邻分类器的编写,与k近邻分类器的测试(K nearest neighbor classifier, and K nearest neighbor classifier test)
  3. 所属分类:其他

    • 发布日期:2017-12-25
    • 文件大小:13302784
    • 提供者:爱豆豆
  1. 新建文件夹

    0下载:
  2. 一个简单的分类器-KNN,可以很好地达到将几种属性分离开来。(A simple classifier, is a good way to achieve split several attributes.)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:1024
    • 提供者:SUN_24
  1. CT_WSNv1.0

    0下载:
  2. knn optimization for wsn
  3. 所属分类:其他

    • 发布日期:2018-01-04
    • 文件大小:25600
    • 提供者:majidnia
  1. KNN方法

    0下载:
  2. 邻近算法,或者说K最近邻(kNN,k-NearestNeighbor)分类算法是数据挖掘分类技术中最简单的方法之一(The adjacent algorithm, or the K nearest neighbor (kNN, k-NearestNeighbor) classification algorithm is one of the simplest methods in the data mining classification technique)
  3. 所属分类:其他

  1. KNN

    0下载:
  2. 通过K-NN(K临近)算法,python语言实现glass数据集的分类,压缩包里包括glass.txt数据集。(The classification of glass data sets by KNN algorithm)
  3. 所属分类:其他

  1. knn

    0下载:
  2. #k-近邻算法 实现 KNN 分类算法 # 对未知类别属性的数据集中的每个点依次执行以下操作: # (1)计算已知类别数据集中的点与当前点之间的距离 # (2)按照距离递增次序排序 # (3)选取与当前点距离最小的K个点 # (4)确定前K个点所在类别的出现频率 # (5)返回前K个点出现频率最高的类别作为当前点的预测分类(#k-Nearest Neighbor , KNN)
  3. 所属分类:其他

  1. KNN与FISHER准则分类

    1下载:
  2. 基于matlab的KNN以及FISHER准则分类代码,附带算例。(Matlab based KNN and FISHER criteria classification code, with examples.)
  3. 所属分类:其他

    • 发布日期:2020-04-21
    • 文件大小:138240
    • 提供者:wzzzhong
  1. KNN编程

    1下载:
  2. matlab实现knn及剪辑KNN,通过自动生成数据集进行knn分类及剪辑KNN分类验证并生成分布图显示。(The KNN and clip KNN are realized by MATLAB. The KNN classification and clip KNN classification are verified by automatically generating data sets, and the distribution map is generated for displa
  3. 所属分类:其他

    • 发布日期:2020-05-09
    • 文件大小:4096
    • 提供者:南风之上
  1. KNN

    1下载:
  2. 高光谱图像knn分类算法,在PaviaU和Indianpines数据集上测试(Knn classification algorithm for hyperspectral images, tested on PaviaU and Indianpines datasets)
  3. 所属分类:其他

    • 发布日期:2020-07-18
    • 文件大小:2048
    • 提供者:555644
« 12 3 »
搜珍网 www.dssz.com