码迷,mamicode.com
首页 > 其他好文 > 详细

Ablation study 2018-11-10

时间:2018-11-10 15:20:30      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:build   http   learning   exp   rem   移除   sse   unit   diff   

Ablation study: 消融研究,指通过移除某个模型或者算法的某些特征,来观察这些特征对模型效果的影响

以下摘自:https://www.quora.com/In-the-context-of-deep-learning-what-is-an-ablation-study

An ablation study typically refers to removing some “feature” of the model or algorithm, and seeing how that affects performance.

Examples:

  • An LSTM has 4 gates: feature, input, output, forget. We might ask: are all 4 necessary? What if I remove one? Indeed, lots of experimentation has gone into LSTM variants, the GRU being a notable example (which is simpler).
  • If certain tricks are used to get an algorithm to work, it’s useful to know whether the algorithm is robust to removing these tricks. For example, DeepMind’s original DQN paper reports using (1) only periodically updating the reference network and (2) using a replay buffer rather than updating online. It’s very useful for the research community to know that both these tricks are necessary, in order to build on top of these results.
  • If an algorithm is a modification of a previous work, and has multiple differences, researchers want to know what the key difference is.
  • Simpler is better (inductive prior towards simpler model classes). If you can get the same performance with two models, prefer the simpler one.

Ablation study 2018-11-10

标签:build   http   learning   exp   rem   移除   sse   unit   diff   

原文地址:https://www.cnblogs.com/qiulinzhang/p/9938776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!