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

https://github.com/maroshmka/np-mlp-clf

Raw implementation of mlp classifier in python using numpy.
https://github.com/maroshmka/np-mlp-clf

classification example-code learning machine-learning multilayer-perceptron neural-network numpy

Last synced: about 2 months ago
JSON representation

Raw implementation of mlp classifier in python using numpy.

Awesome Lists containing this project

README

          

# MLP classifier

This is an implementation of raw multilayer perceptron classifier in numpy.
It has also implementation of simple GridSearch.

### Usage:

Install dependencies from `requirements.txt`, e.g. to virtualenv.
Then run script.

```bash
$ python3 main.py [-gs] --data iris|2d
gs - use grid search for model selection
```

In the end, visualisations of results will be stored in `results/`.
You can see an example of a results in `example_results/`.