Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 822 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 822 Bytes

Artificial-Neural-Network

Simple ANN model that predicts if a certain customer will leave their bank

Linux Setup

Download the Linux version of Miniconda with the appropriate build.

$ cd Downloads
$ bash Miniconda3-latest-Linux-x86_64.sh

Create a new Python virtual environment.

$ conda create -n py35 python=3.5 anaconda

Activate the newly created environment.

$ source activate py35

Install spyder.

$ conda install spyder

Install packages/dependencies.

$ conda install theano
$ conda install tensorflow
$ conda install keras

Clone this repository.

$ git clone https://github.com/MarbilleJuntado/Artificial-Neural-Network.git

Open spyder: $ spyder. Navigate the cloned repository and open train.py. Click Run.