An open API service indexing awesome lists of open source software.

https://github.com/ltfschoen/aind2-dl

AIND Jupyter Notebook to predict student admissions using Keras Neural Networks
https://github.com/ltfschoen/aind2-dl

categorical-cross-entropy cross-entropy data-cleaning error-functions keras-neural-networks loss-functions matplotlib-figures multi-layer-perceptron normalize one-hot-encode pandas-dataframes scatter-plot sigmoid splitting stochastic-gradient-descent training-set-generator

Last synced: 3 months ago
JSON representation

AIND Jupyter Notebook to predict student admissions using Keras Neural Networks

Awesome Lists containing this project

README

        

# aind2-dl

### Instructions

1. Clone the repository and navigate to the downloaded folder.

```
git clone https://github.com/udacity/aind2-dl.git
cd aind2-dl
```

2. Obtain the necessary Python packages, and switch Keras backend to Tensorflow.

For __Mac/OSX__ or __Linux__:
```
conda env create -f requirements/aind-dl-mac-linux.yml
source activate aind-dl
KERAS_BACKEND=tensorflow python -c "from keras import backend"
```

For __Windows__:
```
conda env create -f requirements/aind-dl-windows.yml
activate aind-dl
set KERAS_BACKEND=tensorflow
python -c "from keras import backend"
```

3. Enjoy!