The first Udacity Project from the Deep Learning Nanodegree. Using only Numpy to implement forward and back propagation to predict Bike-Sharing Patterns.
- Create a conda environment: Make sure you have installed: numpy matplotlib pandas jupyter notebook
conda create --name deep-learning python=3
conda install numpy matplotlib pandas jupyter notebook
- Activate your environment:
- Windows:
activate deep-learning
- Mac/Linux:
source activate deep-learning
- Run the notebook server in the root directory of the project:
jupyter notebook
- The server is located in: localhost:8888
- Open the Jupyter notebook called: Your_first_neural_network.ipynb
- The data comes from: UCI Machine Learning Database
The predictions are acceptable but in the December the model overestimes bike ridership because it hasn't had sufficient holiday season training examples.