build a neural network from scratch to carry out a bike sharing prediction problem on a real dataset from the UCI Machine Learning Database.
Create a new conda environment:
conda create --name predict python=3
Enter your new environment:
Mac/Linux: >> source activate predict
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 server:
jupyter notebook