Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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


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

classification convolutional-neural-networks deep-neural-networks global-average-pooling image-augmentation image-recognition keras loss-functions mlp model-architecture multi-layer-architecture multi-layer-perceptron one-hot-encode optimiser tensorflow testing training validation

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# aind2-cnn

### Instructions

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

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

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

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

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

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

3. Run `cd mnist-mlp; jupyter notebook mnist_mlp.ipynb`