Skip to content

Files

Latest commit

56abca5 · Jun 13, 2017

History

History

numpy

Pure Numpy version of DeepLearningZeroToAll

  • Logistics Regression
  • Softmax Classification
  • Convolution Network
  • Recurrent Neural Network

Other resources

  • minpy

    Minpy is a pure Numpy Interface on the top of MXNet. So it can run on GPUs. It's simple to use by swapping import numpy as np with import minpy.numpy as np

  • Autograd

    Autograd allows automatic gradient computations with Numpy. However, in this repo, there will be no autograd for study purpose.