artlib


Nameartlib JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/NiklasMelton/AdaptiveResonanceLib
SummaryA Python library for Adaptive Resonance Theory (ART) algorithms.
upload_time2024-03-14 06:01:16
maintainer
docs_urlNone
authorNiklas M. Melton
requires_python>=3.9,<4.0
licenseMIT
keywords adaptive resonance theory art machine learning neural networks clustering
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# AdaptiveResonanceLib

Welcome to AdaptiveResonanceLib, a comprehensive and modular Python library for Adaptive Resonance Theory (ART) algorithms. Based on scikit-learn, our library offers a wide range of ART models designed for both researchers and practitioners in the field of machine learning and neural networks. Whether you're working on classification, clustering, or pattern recognition, AdaptiveResonanceLib provides the tools you need to implement ART algorithms efficiently and effectively.

## Available Models

AdaptiveResonanceLib includes implementations for the following ART models:

- ART1
- ART2
- Bayesian ART
- Gaussian ART
- Hypersphere ART
- Ellipsoidal ART
- Fuzzy ART
- Quadratic Neuron ART
- Dual Vigilance ART
- Topo ART
- Simple ARTMAP
- ARTMAP
- DeepARTMAP
- SMART
- Fusion ART
- Biclustering ARTMAP

## Installation

To install AdaptiveResonanceLib, simply use pip:

[comment]: <> (```bash)

[comment]: <> (pip install AdaptiveResonanceLib)

[comment]: <> (```)

```bash
pip install artlib
```

Ensure you have Python 3.9 or newer installed.

## Quick Start

Here's a quick example of how to use AdaptiveResonanceLib with the Fuzzy ART model:

```python
from artlib import FuzzyART
import numpy as np

# Your dataset
train_X = np.array([...])
test_X = np.array([...])

# Initialize the Fuzzy ART model
model = FuzzyART(rho=0.7, alpha = 0.0, beta=1.0)

# Fit the model
model.fit(train_X)

# Predict new data points
predictions = model.predict(test_X)
```

Replace `params` with the parameters appropriate for your use case.

## Documentation

For more detailed documentation, including the full list of parameters for each model, visit our [documentation page](https://github.com/NiklasMelton/AdaptiveResonanceLib).

## Examples

For examples of how to use each model in AdaptiveResonanceLib, check out the `/examples` directory in our repository.

## Contributing

We welcome contributions to AdaptiveResonanceLib! If you have suggestions for improvements, or if you'd like to add more ART models, please see our `CONTRIBUTING.md` file for guidelines on how to contribute.

You can also join our [Discord server](https://discord.gg/45FjtRCt) and participate directly in the discussion.

## License

AdaptiveResonanceLib is open source and available under the MIT license. See the `LICENSE` file for more info.

## Contact

For questions and support, please open an issue in the GitHub issue tracker or message us on our [Discord server](https://discord.gg/45FjtRCt). We'll do our best to assist you.

Happy Modeling with AdaptiveResonanceLib!


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/NiklasMelton/AdaptiveResonanceLib",
    "name": "artlib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "",
    "keywords": "adaptive resonance theory,ART,machine learning,neural networks,clustering",
    "author": "Niklas M. Melton",
    "author_email": "niklasmelton@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/17/06/d5a7a35fe45a73de2278b3ceceaf4c25086f57f8b1a0e7244b80a2f3e31e/artlib-0.1.0.tar.gz",
    "platform": null,
    "description": "\n# AdaptiveResonanceLib\n\nWelcome to AdaptiveResonanceLib, a comprehensive and modular Python library for Adaptive Resonance Theory (ART) algorithms. Based on scikit-learn, our library offers a wide range of ART models designed for both researchers and practitioners in the field of machine learning and neural networks. Whether you're working on classification, clustering, or pattern recognition, AdaptiveResonanceLib provides the tools you need to implement ART algorithms efficiently and effectively.\n\n## Available Models\n\nAdaptiveResonanceLib includes implementations for the following ART models:\n\n- ART1\n- ART2\n- Bayesian ART\n- Gaussian ART\n- Hypersphere ART\n- Ellipsoidal ART\n- Fuzzy ART\n- Quadratic Neuron ART\n- Dual Vigilance ART\n- Topo ART\n- Simple ARTMAP\n- ARTMAP\n- DeepARTMAP\n- SMART\n- Fusion ART\n- Biclustering ARTMAP\n\n## Installation\n\nTo install AdaptiveResonanceLib, simply use pip:\n\n[comment]: <> (```bash)\n\n[comment]: <> (pip install AdaptiveResonanceLib)\n\n[comment]: <> (```)\n\n```bash\npip install artlib\n```\n\nEnsure you have Python 3.9 or newer installed.\n\n## Quick Start\n\nHere's a quick example of how to use AdaptiveResonanceLib with the Fuzzy ART model:\n\n```python\nfrom artlib import FuzzyART\nimport numpy as np\n\n# Your dataset\ntrain_X = np.array([...])\ntest_X = np.array([...])\n\n# Initialize the Fuzzy ART model\nmodel = FuzzyART(rho=0.7, alpha = 0.0, beta=1.0)\n\n# Fit the model\nmodel.fit(train_X)\n\n# Predict new data points\npredictions = model.predict(test_X)\n```\n\nReplace `params` with the parameters appropriate for your use case.\n\n## Documentation\n\nFor more detailed documentation, including the full list of parameters for each model, visit our [documentation page](https://github.com/NiklasMelton/AdaptiveResonanceLib).\n\n## Examples\n\nFor examples of how to use each model in AdaptiveResonanceLib, check out the `/examples` directory in our repository.\n\n## Contributing\n\nWe welcome contributions to AdaptiveResonanceLib! If you have suggestions for improvements, or if you'd like to add more ART models, please see our `CONTRIBUTING.md` file for guidelines on how to contribute.\n\nYou can also join our [Discord server](https://discord.gg/45FjtRCt) and participate directly in the discussion.\n\n## License\n\nAdaptiveResonanceLib is open source and available under the MIT license. See the `LICENSE` file for more info.\n\n## Contact\n\nFor questions and support, please open an issue in the GitHub issue tracker or message us on our [Discord server](https://discord.gg/45FjtRCt). We'll do our best to assist you.\n\nHappy Modeling with AdaptiveResonanceLib!\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python library for Adaptive Resonance Theory (ART) algorithms.",
    "version": "0.1.0",
    "project_urls": {
        "Documentation": "https://github.com/NiklasMelton/AdaptiveResonanceLib",
        "Homepage": "https://github.com/NiklasMelton/AdaptiveResonanceLib",
        "Repository": "https://github.com/NiklasMelton/AdaptiveResonanceLib"
    },
    "split_keywords": [
        "adaptive resonance theory",
        "art",
        "machine learning",
        "neural networks",
        "clustering"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bfe957bcf5f5437c975d7c223523c09fcc24e2c1940a95b1f05039e6c5c981d",
                "md5": "a056452fac585d5f9e30ca971ec7e61a",
                "sha256": "169f3d662ece1b58f14ab9c4cd8f687ec32f842b92e1df958a5c819b60979df2"
            },
            "downloads": -1,
            "filename": "artlib-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a056452fac585d5f9e30ca971ec7e61a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 42928,
            "upload_time": "2024-03-14T06:01:08",
            "upload_time_iso_8601": "2024-03-14T06:01:08.613438Z",
            "url": "https://files.pythonhosted.org/packages/8b/fe/957bcf5f5437c975d7c223523c09fcc24e2c1940a95b1f05039e6c5c981d/artlib-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1706d5a7a35fe45a73de2278b3ceceaf4c25086f57f8b1a0e7244b80a2f3e31e",
                "md5": "ad726fe92ca968c1264a490f8a8c9bc3",
                "sha256": "a0107ecefeb99b89f1b9bb7b60d89484fce32a97f8c36010f20505a43676e4b5"
            },
            "downloads": -1,
            "filename": "artlib-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ad726fe92ca968c1264a490f8a8c9bc3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 26152,
            "upload_time": "2024-03-14T06:01:16",
            "upload_time_iso_8601": "2024-03-14T06:01:16.642387Z",
            "url": "https://files.pythonhosted.org/packages/17/06/d5a7a35fe45a73de2278b3ceceaf4c25086f57f8b1a0e7244b80a2f3e31e/artlib-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-14 06:01:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "NiklasMelton",
    "github_project": "AdaptiveResonanceLib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "artlib"
}
        
Elapsed time: 0.21011s