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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

AMS Feature Column: Singular Value Decomposition

57 点作者 nixme将近 16 年前

5 条评论

hooande将近 16 年前
A regularized singular value decomposition is one of the most powerful machine learning algorithms available. Two decent open source implementations are SciPy (<a href="http://www.scipy.org/" rel="nofollow">http://www.scipy.org/</a>) and SVDLIBC (<a href="http://tedlab.mit.edu/~dr/svdlibc/" rel="nofollow">http://tedlab.mit.edu/~dr/svdlibc/</a>).<p>Timely Development also posted the full c++ code they used for the Netflix Prize <a href="http://www.timelydevelopment.com/demos/NetflixPrize.aspx" rel="nofollow">http://www.timelydevelopment.com/demos/NetflixPrize.aspx</a>
评论 #736866 未加载
pixcavator将近 16 年前
Related to the Netflix prize, take a look at the Hodge decomposition: <a href="http://arxiv.org/abs/0811.1067" rel="nofollow">http://arxiv.org/abs/0811.1067</a>.
评论 #737004 未加载
grinich将近 16 年前
SVD also has an interesting application in image compression. Here's a fairly good example.<p><a href="http://online.redwoods.cc.ca.us/instruct/darnold/LAPROJ/Fall2001/AdamDave/textwriteup.pdf" rel="nofollow">http://online.redwoods.cc.ca.us/instruct/darnold/LAPROJ/Fall...</a>
评论 #736851 未加载
henryl将近 16 年前
SVD is the swiss army knife of linear algebra.
评论 #736684 未加载
jackdawjack将近 16 年前
Nice. This helped straighten up my idea that svd is just eigenvalues for nonsquare matricies.