搜索资源列表
SVMcode
- 这是一个采用c++编写的用于机器学习文本分类的SVM算法的实现代码。-c prepared using machine learning for text classification of SVM codes.
支持向量机算法及其代码实现
- 支持向量机(SVM),起初由vapnik提出时,是作为寻求最优(在一定程度上)二分类器的一种技术。後来它又被拓展到回归和聚类应用。SVM是一种基于核函数的方法,它通过某些核函数把特征向量映射到高维空间,然後建立一个线性判别函数(或者说是一个高维空间中的能够区分训练数据的最优超平面,参考异或那个经典例子)。假如SVM没有明确定义核函数,高维空间中任意两点距离就需要定义。
cuSVMVCcode
- 基于GPU计算的SVM,VC++源码,包括详细文档说明文件。借用了GPU编程的优势,该代码据作者说比常规的libsvm等算法包的训练速度快13-73倍,预测速度快22-172倍。希望对大家有用-cuSVM is a software package for high-speed (Gaussian-kernelized) Support Vector Machine training and prediction that exploits the massively parallel proc
Sequential_Minimal_Optimization_for_SVM
- 支持向量机(SVM)的Sequential Minimal Optimization 算法,介绍了支持向量机(SVM)和SMO算法(c++伪代码)。-Sequential Minimal Optimization for SVM
multiClass_svm
- 一个svm(向量机)分类算法本质上是二类分类器代码,实现多类分类的方法一般是将多类分类看作是多个一对多的二类分类器。本程序源码就是一种基于svmlight的svm多类分类器实现。对分类感兴趣的用户请参照。-A svm (vector machine) classification algorithm is essentially a second-class classification code, multi-class classification methods are generally
penalizedSVM_1.1
- R代码的scad svm算法 可用人工智能分类算法之中-R code scad svm algorithm being used artificial intelligence classification algorithm
SVM
- 支持向量机算法的C++程序实现,内含代码的详细注释及说明。-support vector machine
SVM(CPP)
- SVM算法用C++方法实现,非常适合初学者学习 代码易读易懂 是份很好的学习资料-SVM algorithm with C++ method and ideal for beginners to learn the code easy to read parts of a good learning materials
svm--matlab
- matlab智能算法30个案例分析源码之--支持向量机的分类--基于乳腺组织电抗阻性的乳腺癌诊断 包括原始数据和SVM分类代码 是学习支持向量机的好的案例-matlab intelligent algorithm analysis of 30 cases source code- support vector machine classification- based on the electrical resistance of breast cancer diagnosis in bre
ORLPPCAPSVM
- 一个完整的人脸识别算法实验,快速pca+svm算法,里面还带有orl人脸数据库,并且代码还有相应注释,大小有几十m,是一个很好的人脸实验-A complete face recognition algorithm experiments, fast pca+svm algorithm, which also comes with orl face database, and the code as well as the corresponding notes, there are dozens
svm
- opencv实现的svm算法的代码示范,可用于学习svm的原理和使用效果。-opencv svm algorithm implementation code demonstration svm can be used to learn the principles and results.
project2_code
- 这是matlab编写的Logistic Discrimination 和 KNN分类器代码。这两个算法的实现参考了《Introduction to Machine Learning》。 除此在代码中还包含了调用matlab自带的libsvm的例程。rumLogisticDiscrimination, runKnn, runSvm分别对这3个算法在数据集liver_train_data上的分类准确度进行测试。测试结果在code report.doc 中有简要描述。-This code implem
svm_python
- svm算法python代码,用于了解学习svm算法-svm python source code
psosvm
- 关于遗传算法的SVM的代码,有的需要自己改改,很不错的。-Code about genetic algorithm of SVM, some need to change myself, very good.
IRIS_SVM
- SVM算法对IRIS数据进行分类,采用MATLAB代码编写,带iris原始数据。-matlab implementation,iris classiy,svm method
SMO算法实现
- 使用Matlab重新实现了svm算法中的核心算法SMO,即序列优化问题。 其中my_seqminopt.m是重写的实现代码,完成了核心的迭代优化过程。(MATLAB code of SMO algorithm in SVM algorithm)
模式识别代码
- 基于matlab的Iris、乳腺癌数据集的模式识别分类算法,含有 遗传算法+SVM、isodata、感知器算法、LMSE、神经网络等算法的实现代码,用于聚类效果良好,是模式识别大作业的参考资料(The pattern recognition classification algorithm based on MATLAB for Iris and breast cancer data sets contains the implementation code of genetic algorit
6.代码
- 实现分类,回归的算法,可以直接下载运行验证(Implementation of classification, regression algorithm, can be directly downloaded operation verification)
python
- 该代码基于Python3,利用机器学习中支持向量机回归算法(SVR)实现对数据的拟合以及预测,可以通过调试C值和gamma值达到不同的拟合程度,具有较大的实际意义,并且该代码本人亲自调式运用,适合广大学习者使用。(This code is based on Python 3. It uses support vector machine regression algorithm (SVR) in machine learning to fit and predict the data. It c
机器学习算法各种代码
- 机器学习算法各种代码,包含svm,pca,lda,决策树等源码