TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

SVMs : Beginner's resources

8 点作者 apurva超过 15 年前
Hey, So for some one who is starting out with Support Vector Machines, there is just loads of material out there which does not make immediate sense. I found the following resources (may suggest in exploring in the order mentioned) really helpful, maybe they can help you out too :<p>http://www.tristanfletcher.co.uk/SVM%20Explained.pdf<p>http://pyml.sourceforge.net/doc/howto.pdf ( Personally, I found this brilliant and it took some effort to dig this up)<p>Finally: http://videolectures.net/mlss06tw_lin_svm/<p>Hope this helps..

3 条评论

Smerity超过 15 年前
For a quick introduction to SVMs (and a wide range of machine learning algorithms) then I highly suggest Andrew Moore's tutorials. They're extremely concise and well described, taking the format of a university lecture. Only the PDF slides are available however. <a href="http://www.autonlab.org/tutorials/svm.html" rel="nofollow">http://www.autonlab.org/tutorials/svm.html</a><p>If you want a good introduction which actually derives the math and logic behind SVMs then I'd suggest looking at Stanford's AI/ML video lectures available for free here - <a href="http://see.stanford.edu/see/lecturelist.aspx?coll=348ca38a-3a6d-4052-937d-cb017338d7b1" rel="nofollow">http://see.stanford.edu/see/lecturelist.aspx?coll=348ca38a-3...</a> It begins with the first few lectures which covers introductory knowledge and some other machine learning algorithms but lectures 6-8 cover the theory and principles behind SVM.<p>The great thing about this is that relatively little knowledge is assumed on the student's part and he provides a great deal of notes and handouts on any areas the students may be fuzzy.<p>Unless you're going to be merely using a prebuilt machine learning library I feel that understanding the math and logic behind the algorithms is vital.
评论 #1112034 未加载
vomjom超过 15 年前
If you don't care too much about the theory and just want to get up and running, you should read:<p><a href="http://www.csie.ntu.edu.tw/~cjlin/papers/guide/guide.pdf" rel="nofollow">http://www.csie.ntu.edu.tw/~cjlin/papers/guide/guide.pdf</a><p>And libsvm is probably the most widely used svm library:<p><a href="http://www.csie.ntu.edu.tw/~cjlin/libsvm/" rel="nofollow">http://www.csie.ntu.edu.tw/~cjlin/libsvm/</a><p>The author of the above paper and library is the same one giving the lecture in the OP's third link.
评论 #1111645 未加载
sbt超过 15 年前
I would check out some of Thorsten Joachims' projects, try to run them with some examples, and look at some course notes.<p><a href="http://www.cs.cornell.edu/People/tj/" rel="nofollow">http://www.cs.cornell.edu/People/tj/</a>