Bike Share Project for Udacity Deep Learning Introduction
In this project, you'll get to build a neural network from scratch to carry out a prediction problem on a real dataset! By building a neural network from the ground up, you'll have a much better understanding of gradient descent, backpropagation, and other concepts that are important to know before we move to higher level tools such as Tensorflow.
You'll also get to see how to apply these networks to solve real prediction problems!
The data comes from the UCI Machine Learning Database.Instructions
Download the project materials from this link, or from the link at the bottom of the page, and unzip it.cd into the dlnd-your-first-network folder that you just unzipped.
Download anaconda or miniconda based on the instructions in the Anaconda lesson.
Create a new conda environment:conda create --name dlnd python=3
Enter your new environment:Mac/Linux: >> source activate dlnd Windows: >> activate dlnd
Ensure you have numpy, matplotlib, pandas, and jupyter notebook installed by doing the following: conda install numpy matplotlib pandas jupyter notebook
Run the following to open up the notebook: jupyter notebook dlnd-your-first-neural-network.ipynb
.Follow the instructions in the notebook will lead you through the project. Ensure you've passed the unit tests in the notebook before you submit the project!
If you need help running the notebook file, check out the Jupyter notebook lesson.
Feedback You can expect to get feedback from your Udacity reviewer within 3-4 days.
Submission Ensure you've passed all the unit tests in the notebook.Ensure you pass all points on the rubric.
When you're done with the project, please save the notebook as an HTML file. You can do this by going to the File menu in the notebook and choosing "Download as" > HTML. Ensure you submit both the Jupyter Notebook and it's HTML version together.
Package the notebook and the HTML file into a zip archive, or push the notebook and the HTML file to a GitHub repo.Hit Submit Project below!