Skip to content

Instantly share code, notes, and snippets.

@InfinityCliff
Last active March 7, 2018 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InfinityCliff/4049e66b3305fab6de13a28202654ffe to your computer and use it in GitHub Desktop.
Save InfinityCliff/4049e66b3305fab6de13a28202654ffe to your computer and use it in GitHub Desktop.
Links, notes, etc on Deep Learning

Fast AI

How To's

Download Data from Kaggle - https://github.com/floydwch/kaggle-cli

Notes

Softmax
  • activation fucntion of probabliity
  • only on last layer
  • output sums to 1.0
  • can not have negative values

Math Refreshers

  • ln(x*y) = ln(x) + ln(y)
  • ln(x/y) = ln(x) - ln(y)
  • ln(x) = y --> exp^y =x
  • ln and exp(e) are inverse of each other
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment