Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 2.75 KB

File metadata and controls

38 lines (30 loc) · 2.75 KB

Specification document

Problem that I'm trying to solve

  • How to train a Neural Network using MNIST database with plain numpy
  • How to use the trained Neural Network to classify digits from input images

Algorithms

Data structures

  • Tensors (n dimensional matrices) - the weights of the Neural Network

Input

  • In the training phase the program is using MNIST database in Python pickle format
  • In the classifying phase the program is getting 28x28 pixel grayscale images representing digits as inputs and the program is supposed to output the actual digit the image contains

Time and space complexity

References

Video references