我是靠谱客的博主 哭泣早晨,最近开发中收集的这篇文章主要介绍CMU 11-785 L09 Cascade-Correlation and Deep Learning,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Cascade-Correlation Algorithm

  • Start with direct I/O connections only. No hidden units.
  • Train output-layer weights using BP or Quickprop.
  • If error is now acceptable, quit.
  • Else, Create one new hidden unit offline.
    • Create a pool of candidate units. Each gets all available inputs. Outputs are not yet connected to anything.
    • Train the incoming weights to maximize the match (covariance) between each unit’s output and the residual error:
    • When all are quiescent, tenure the winner and add it to active net. Kill all the other candidates.
  • Re-train output layer weights and repeat the cycle until done.

在这里插入图片描述

Why Is Backprop So Slow?

  • Moving Targets
    • All hidden units are being trained at once, changing the environment seen by the other units as they train.
  • Herd Effect
    • Each unit must find a distinct job – some component of the error to correct.
    • All units scramble for the most important jobs. No central authority or communication.
    • Once a job is taken, it disappears and units head for the next-best job, including the unit that took the best job.
    • This is a very inefficient way to assign a distinct useful job to each unit.

Advantages of Cascade Correlation

  • No need to guess size and topology of net in advance.
  • Can build deep nets with higher-order features.
  • Much faster than Backprop or Quickprop.
  • Trains just one layer of weights at a time (fast).
  • Works on smaller training sets (in some cases, at least).
  • Old feature detectors are frozen, not cannibalized, so good for incremental “curriculum” training.
  • Good for parallel implementation.

最后

以上就是哭泣早晨为你收集整理的CMU 11-785 L09 Cascade-Correlation and Deep Learning的全部内容,希望文章能够帮你解决CMU 11-785 L09 Cascade-Correlation and Deep Learning所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部