Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 1.39 KB

File metadata and controls

24 lines (19 loc) · 1.39 KB

deep-learning-scripts-by-a-beginner

I am learning basics of deep learning using python and trying out various algoroithms. I usually use Jupyter notebooks. If you using the material in this repository, i would recommend using Jupyter notebook files. They are better documented and easier to follow. If you are looking for code to execute, I have rough patched the same code in .Py files in the same folder next to the notebooks. Feel free to contribute if you like :)

Folder Structure

Basic Python

Hi there world. What's up?

This folder is all about basics of python. how to time processes, basic methods like sigmoid, Relu etc., scripts to convert images to vectors and very minimal pre-processing.

Single Neural Network

It all starts with a single neuron.

Did you know, single neuron almost identically map logistic regression. Hence the scripts inside this folder mostly use logistic regression terms.

Hidden Layer

Whats with all the secrecy.

Neurons do not work alone. There are many of them, forming layers . Each layer passes on what it has learnt to the next layer. And each of the next layer gives a feedback to the previous one when it hears back from target.

L Layer NN

When specifics blur out and all information is general.

This is the general L layer NN. This is what all packages like TensorFlow, CNTK etc would provide. Mostly with major improvements. :D