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.
- Host: GitHub
- URL: https://github.com/martinkersner/ann-meetup
- Owner: martinkersner
- Created: 2017-06-12T13:48:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T06:56:11.000Z (almost 9 years ago)
- Last Synced: 2025-05-25T14:46:53.964Z (about 1 year ago)
- Topics: artificial-intelligence, artificial-neural-networks, keras, mnist, multilayer-perceptron-network, sigmoid-function, stochastic-gradient-descent
- Language: Jupyter Notebook
- Homepage: https://www.meetup.com/Seoul-Artificial-Intelligence-Meetup/events/240724047/
- Size: 15.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```