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

import numpy as np
from python_artmap import ARTMAPFUZZY

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

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

ArtMap = ARTMAPFUZZY(input, output, rhoARTa=0.6, rhoARTb=0.9)
ArtMap.train()

ArtMap.test([0, 0]) #{'index': 0, 'ArtB': [0.0, 1.0], 'id': '0010'}
ArtMap.test([0, 1]) #{'index': 0, 'ArtB': [0.0, 1.0], 'id': '0010'}
ArtMap.test([1, 0]) #{'index': 0, 'ArtB': [0.0, 1.0], 'id': '0010'}
ArtMap.test([1, 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.4.1.tar.gz (11.4 kB view details)

Uploaded Source

File details

Details for the file python_artmap-0.4.1.tar.gz.

File metadata

  • Download URL: python_artmap-0.4.1.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.3

File hashes

Hashes for python_artmap-0.4.1.tar.gz
Algorithm Hash digest
SHA256 373b5c7b4c7aa7cd45a2ad2b00c2a35fbb06153aba72ff1fc8944467bd72b184
MD5 a7ad888ec545b4ac2fd91a9c7ae78897
BLAKE2b-256 df3f3a20765612a44774b44670d9324054269bb1a042ad5b8da66c1a52ea409e

See more details on using hashes here.

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