Skip to main content

A Python Library of Neural network ARTMAP

Project description

Python ARTMAP

https://img.shields.io/pypi/v/python_artmap.svg
https://img.shields.io/travis/DavidVinicius/python_artmap.svg Documentation Status

A Python Library of Neural network ARTMAP.

  • Free software: MIT license

How install

pip install python_artmap

Features

This library contains two of the main ART neural network

  • ARTMAP Fuzzy

  • ART Fuzzy

How use it

from python_artmap import ARTMAPFUZZY

entrada  = np.array([
        [0, 0],
        [0, 1],
        [1, 0],
        [1, 1]
])

saida  = np.array([
        [0],
        [0],
        [0],
        [1],
])

ArtMap = ARTMAPFUZZY(entrada, saida, rhoInterART=0.2, rhoARTa=0.6, rhoARTb=0.9)
ArtMap.train()

ArtMap.test([0, 0], 0.1) #{'index': 0, 'ArtB': [0.0, 1.0], 'id': '0010'}
ArtMap.test([1, 0], 0.1) #{'index': 1, 'ArtB': [1.0, 0.0], 'id': '1000'}

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.0 (2020-06-08)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_artmap-0.3.0.tar.gz (11.3 kB view hashes)

Uploaded Source

Built Distribution

python_artmap-0.3.0-py2.py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page