This is the code for "How to Do Math Easily - Intro to Deep Learning #4' by Siraj Raval on YouTube
This is the code for this video on Youtube by Siraj Raval apart of the 'Intro to Deep Learning' Udacity nanodegree course. We build a 3 layer feedforward neural network trains on a set of binary number input data and predict the binary number output.
None!
Install Jupyter notebook from here
You can either run the notebook by typing jupyter notebook
into terminal when in the directory or run the demo.py script by running python demo.py
in terminal.
The challenge for this video is to build a neural network to predict the magnitude of an Earthquake given the date, time, Latitude, and Longitude as features. This is the dataset. Optimize at least 1 hyperparameter using Random Search. See this example for more information.
You can use any library you like, bonus points are given if you do this using only numpy.
Credits for the original code go to Andrew Trask. I've merely created a wrapper to get people started.