https://github.com/pankajarm/dlnd-your-first-network
https://github.com/pankajarm/dlnd-your-first-network
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pankajarm/dlnd-your-first-network
- Owner: pankajarm
- Created: 2017-02-07T06:03:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-25T22:35:03.000Z (about 8 years ago)
- Last Synced: 2025-03-02T09:39:41.161Z (3 months ago)
- Language: Jupyter Notebook
- Size: 1.26 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DLND-your-first-network
UDACITY Deep Learning Foundation Course
Project 1
In this project, we will be building a neural network from scratch to carry out a prediction problem on a real dataset!
By building a neural network from the ground up, we'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.
we will also get to see how to apply these networks to solve real prediction problems!
The data comes from the UCI Machine Learning Database.
https://archive.ics.uci.edu/ml/datasets/Bike+Sharing+Dataset
#Instructions
Download the project materials from this link,
https://d17h27t6h515a5.cloudfront.net/topher/2017/January/588d28a7_dlnd-your-first-network/dlnd-your-first-network.zip
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