Keyboard shortcuts

/ or ⌘/Ctrl K
Find a note
j / k
Next / previous section or linked note
h / l
Collapse or go to parent / expand or enter
e or Alt-click
Read a linked note here
o
Open focused note on its own
g g / G
First / last section or linked note
g h / g a
Home / all notes
g b / g t
Backlinks / table of contents
t
Cycle System, Light, Dark
? / Esc
Show / close this reference

Search: ↑/↓ or Ctrl N/P, Enter to open. Shortcuts pause while typing.

LeCun, Bengio, Hinton - Deep Learning [62dcf06c]

Tags: nlp, papers

LeCun, Yann, Yoshua Bengio, and Geoffrey Hinton. “Deep Learning.” Nature 521, no. 7553 (May 2015): 436–44. doi.org/10.1038/nature14539.

1. Summary

Deep learning uses multiple layers to learn representations of data with multiple levels of abstraction

1.1. Supervised Learning

  • most common
  • show inputs and annotations
  • create an objective function that measures errors
  • most people use stochastic gradient descent

    2020-11-24_21-45-23_screenshot.png

  • known since 1960 that linear classifers only carve their input space into very simple regions (half spaces separated by a hyperplane)
  • multiple non-linear layers from 5-20, system can implement extremely intricate functions

1.2. Backprops for multilayer

  • the derivative of the objective with respect to the input of a module can be computed by working backwards from the gardient wrt to the output of that module

2020-11-24_21-47-05_screenshot.png

  • ReLu maps fixed-size input to fixed-size output
  • late 1990's commonly thought that simple gradient descent would get caught in local minima

1.3. CNN's

1.4. RNN's