Installation
All you need to write a simple neural network is Keras which can easily be installed by conda
conda install keras
For the use with GPU, which is highly recommended since GPUs outperform CPUs in most cases, install keras with GPU support
conda install keras-gpu
Preparation for the examples
In order to execute the shown examples we create a conda environment called neuralnetworks including all required packages
conda create -n neuralnetworks python keras numpy pandas matplotlib scikit-learn
and activate it
source activate neuralnetworks