First project of Udacity's Deep Learning Nanogree Click on the image above to watch the introductory video.
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.
- Download the project materials from this link and unzip it.
- cd into the dlnd-your-first-network folder that you just unzipped.
- Download anaconda or miniconda.
- 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.
You can expect to get feedback from your Udacity reviewer within 3-4 days.
- 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!