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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Show HN: Incremental learning of polynomials (and other LIP models) with IRMA

24 点作者 MrBusch超过 4 年前

4 条评论

MrBusch超过 4 年前
I developed a new incremental learning approach (called IRMA) during my PhD in 2014 and haven&#x27;t touched that research for a few years. But it has always been on the back of my mind as an approach worth following up on.<p>Now I decided to make it a bit more approachable through an interactive tool that lets you play with a polynomial that learns from incremental examples you provide. I also included some background on how the method works.<p>Incremental learning (in contrast to batch learning) poses a unique set of problems as the learning algorithm needs to adapt with just a single new example. Compared to the state of the art, IRMA does this through minimizing what it &quot;forgets&quot; about past learned data while adapting to the new example. I chose polynomials as an example as it doesn&#x27;t work well with the typically used gradient descent but can be learned with IRMA in a much more stable manner.<p>The same approach has a closed form solution for a variety of other models (that are linear in the parameters, i.e. LIP) and I&#x27;d be interested to try and apply it to more models (like neural networks) or other tasks (like classification) as well.<p>I&#x27;m excited about any questions or feedback!
评论 #25658584 未加载
jjgreen超过 4 年前
Reminiscent (in spirit) to [1], but there to the specific case of a histogram.<p>[1] <a href="https:&#x2F;&#x2F;ieeexplore.ieee.org&#x2F;document&#x2F;6971097" rel="nofollow">https:&#x2F;&#x2F;ieeexplore.ieee.org&#x2F;document&#x2F;6971097</a>
yorwba超过 4 年前
I&#x27;m sure it&#x27;s a nice visualization, but unfortunately I&#x27;m only seeing a white gap between the two sliders and tapping randomly doesn&#x27;t seem to have any effect. I <i>assume</i> I should be seeing a polynomial graphed even before doing anything.<p>Tested on Android using both Firefox and Chrome.
评论 #25663944 未加载
saiojd超过 4 年前
Nice work and great presentation.