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

https://github.com/matin-ghorbani/mlp_from_scratch

Implement a multi layer perceptron from scratch
https://github.com/matin-ghorbani/mlp_from_scratch

classification from-scratch mlp multilayer-perceptron

Last synced: 9 days ago
JSON representation

Implement a multi layer perceptron from scratch

Awesome Lists containing this project

README

          

# MLP (Multilayer Perceptron) From Scratch

### Install Dependencies:

```bash
pip install -r requirements.txt
```

## I implemented my neural network as a class:
### Losses and Accuracies of my MLP for 100 epochs on Mnist dataset:
![Losses and Accuracies of my MLP](./results/check_losses_accuracies_model.png)

## Information About It:
- **accuracy_train: *0.9916492693110647***
- **accuracy_test: *0.8888888888888888***
- **loss_train: *0.0024207044180093113***
- **loss_test: *0.015910050921797165***