add README and author/licence

This commit is contained in:
dadel 2018-01-24 23:47:01 +01:00
parent d6bd14e8fb
commit 928c8a05ff
4 changed files with 26 additions and 0 deletions

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# Multi-Layer Perceptron
This is a Python 3 implementation of a multi-layer perceptron using Numpy and optionally Matplotlib for cost function visualization.
It is provided under GPLv3 licence.
It implements forward-propagation and backward-propagation (gradient descent).
It allows to learn examples and trying to minimize cost function.
It provides also Momentum optimization, RMSProp optimization, Adam optimization and Forbenius norm regularization.
Note: I developed this only to implement myself the algorithms for fun and not for any production purpose. I already coded MLPs years ago in C and in C++.
I tested it with images of characters (in PGM format) extracted from a scanned image with an other program I developed many years ago in C++ but very dirty so I don't provide it.
I provide the jupyter notebook I used for some tests.

View File

@ -1,3 +1,6 @@
__author__ = "Adel Daouzli"
__licence__ = "GPLv3"
import os import os
from pnmimage import PnmImage from pnmimage import PnmImage

3
mlp.py
View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
__author__ = "Adel Daouzli"
__licence__ = "GPLv3"
import struct import struct
import numpy as np import numpy as np
try: try:

View File

@ -1,3 +1,6 @@
__author__ = "Adel Daouzli"
__licence__ = "GPLv3"
import struct import struct
class PnmImage(object): class PnmImage(object):