Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 796 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 796 Bytes

ML-Keras_ConvNeuralNet

Python Code for the FS 2018 Course Machine learning for Managers

Install Dependencies on MacOS

As there is a problem with older Tensorflowversions (the ones installed by Anaconda Navigator) keras-team/keras#9621 It is needed to install the dependencies (tensorflow and keras using pip)

source activate environmentXY
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl
pip install keras

To run

Install the requirements from the yml file, maybe source deactivate; needed instead of activate.

source activate myenvironment;
conda env update -f environment.yml; #use path to env file   
  1. Use a jupyter notbook with a python 3.5 environment.