SVM MATLAB 实现
我有一个作业是用支持向量机对多类图像进行分类。我不被允许使用任何工具箱,我必须自己编写SVM代码。我必须在 MATLAB 中实现它。由于我对MATLAB不熟悉,所以在实现上遇到了一些麻烦。
你能给我建议任何基本上解释 svm 实现的伪代码或论文吗?我的意思是我知道 SVM 的理论,但我只是不擅长编程。或者任何 SVM 代码都可能非常有帮助!
提前感谢您的帮助。
I have a homework to classify multi-class images with Support Vector Machines. I am not allowed to use any toolbox, I have to write SVM code by my self. I have to implement it in MATLAB. Since I am not familiar with MATLAB, I have some troubles about implementing.
Can you suggest me any pseudocode or paper that explains the svm implementation basically? I mean I know the theory of SVM but I am just not good at programming. Or any SVM code might be very helpful!
Thank you for your help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我喜欢使用 LibSVM 库。在其网页上,您可以找到一些有关 SVM 的有用提示和描述。还有 SVM 分类的初学者指南。源代码本身也应该可用。
http://www.csie.ntu.edu.tw/~cjlin/libsvm/
I like using LibSVM library. On its web pages you can find some useful hints and descriptions of the SVM. There is also beginner's guide to SVM classification. The source code itself should be available as well.
http://www.csie.ntu.edu.tw/~cjlin/libsvm/