Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 932 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 932 Bytes

MNIST Engineering Practice

This repository was inspired by Joel Grus' excellent livecoding video, which can be found here: video

Disclaimer: A significant proportion of the code strongly resembles, while not generally being the same as, the code written by Joel during his livecoding tutorial. My aim has been to extend it, for example extending it from his XOR and FizzBuzz to MNIST, including things like softmax, unit tests, etc. I'm a big fan of the way he writes (Type checking!), so I have tried to code in a way that is as similar in style as possible.


TODO List:

  • Write requirements.txt
  • Layers
  • Network
  • Tests
    • Linear
    • Forward Pass
    • Backward Pass
    • Losses
  • Optimization
  • Run simple network
  • Conv Layer
  • Flatten Layer
  • Pooling Layer
  • Deconvolutional Layer
  • Jenkins