This project builds and trains a neural network that predicts the number of bike users on a given date.
- Install miniconda (link here).
- Use miniconda to install the required Anaconda packages from
requirements.txt
. - Install Tensorflow 1.0 for Python (link here).
- Run Jupyter Notebook and open
Your_first_neural_network.ipynb
.
In this project, bike share data from the UCI machine learning repository is loaded and prepared for training, validating, and testing a neural network.
The network with its forward and backward passes is built from scratch using just the Numpy library.