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

https://github.com/martinkersner/ann-meetup

Practice of implementing Multilayer Perceptron trained with Stochastic Gradient Descent for Seoul AI Meetup on June 25, 2017.
https://github.com/martinkersner/ann-meetup

artificial-intelligence artificial-neural-networks keras mnist multilayer-perceptron-network sigmoid-function stochastic-gradient-descent

Last synced: about 1 month ago
JSON representation

Practice of implementing Multilayer Perceptron trained with Stochastic Gradient Descent for Seoul AI Meetup on June 25, 2017.

Awesome Lists containing this project

README

          

# Artificial Neural Networks

Martin Kersner,

Practice of implementing Multilayer Perceptron trained with Stochastic Gradient Descent for [Seoul AI Meetup](https://www.meetup.com/Seoul-Artificial-Intelligence-Meetup/) on June 25, 2017.
Implementation is within [Jupyter notebook](https://github.com/martinkersner/ann-meetup/blob/master/ann.ipynb).

## Get repository
```
git clone https://github.com/martinkersner/ann-meetup.git
```

## Virtualenv
``` bash
virtualenv -p /usr/bin/python2.7 venv # Python 2 is required
source venv/bin/activate
pip install -r requirements.txt
jupyter notebook
```

## Troubleshooting
If `jupyter notebook` is complaning about protobuf, try to run this command.
```bash
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1.0-cp27-none-linux_x86_64.whl
```