vpso


Namevpso JSON
Version 1.1.2 PyPI version JSON
download
home_page
SummaryMyopic and Non-Myopic Global Optimization
upload_time2023-11-12 17:04:46
maintainer
docs_urlNone
author
requires_python>=3.9
licenseMIT
keywords optimization particle-swarm-optimization adaptive vectorization
VCS
bugtrack_url
requirements numba scipy typing_extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Vectorized Particle Swarm Optimization

**vpso** is a Python package for adaptive Particle Swarm Optimization (PSO) [[1]](#1) that allows to run multiple similar optimization problems in a vectorized fashion.

[![PyPI version](https://badge.fury.io/py/vpso.svg)](https://badge.fury.io/py/vpso)
[![Source Code License](https://img.shields.io/badge/license-MIT-blueviolet)](https://github.com/FilippoAiraldi/multi-pso/blob/master/LICENSE)
![Python 3.9](https://img.shields.io/badge/python->=3.9-green.svg)

[![Tests](https://github.com/FilippoAiraldi/multi-pso/actions/workflows/ci.yml/badge.svg)](https://github.com/FilippoAiraldi/multi-pso/actions/workflows/ci.yml)
[![Downloads](https://static.pepy.tech/badge/vpso)](https://www.pepy.tech/projects/vpso)
[![Maintainability](https://api.codeclimate.com/v1/badges/746f504e874cffeedae2/maintainability)](https://codeclimate.com/github/FilippoAiraldi/vectorized-particle-swarm/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/746f504e874cffeedae2/test_coverage)](https://codeclimate.com/github/FilippoAiraldi/vectorized-particle-swarm/test_coverage)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

---

## Installation

To install the package, run

```bash
pip install vpso
```

**vpso** has the following dependencies

- [Numba](https://numba.pydata.org/)
- [SciPy](https://scipy.org/)
- [typing_extensions](https://pypi.org/project/typing-extensions/).

For playing around with the source code instead, run

```bash
git clone https://github.com/FilippoAiraldi/vectorized-particle-swarm.git
```

---

## Usage


---

## Examples

Our [examples](https://github.com/FilippoAiraldi/vectorized-particle-swarm/tree/master/examples) subdirectory contains a simple use-case to get started with.

---

## License

The repository is provided under the MIT License. See the LICENSE file included with this repository.

---

## Author

[Filippo Airaldi](https://www.tudelft.nl/staff/f.airaldi/), PhD Candidate [f.airaldi@tudelft.nl | filippoairaldi@gmail.com]

> [Delft Center for Systems and Control](https://www.tudelft.nl/en/3me/about/departments/delft-center-for-systems-and-control/) in [Delft University of Technology](https://www.tudelft.nl/en/)

Copyright (c) 2023 Filippo Airaldi.

Copyright notice: Technische Universiteit Delft hereby disclaims all copyright interest in the program “csnn” (Nueral Networks with CasADi) written by the Author(s). Prof. Dr. Ir. Fred van Keulen, Dean of 3mE.

---

## References

<a id="1">[1]</a>
Z. H. Zhan, J. Zhang, Y. Li and H. S. H. Chung, "Adaptive Particle Swarm Optimization," in IEEE Transactions on Systems, Man, and Cybernetics, Part B (Cybernetics), vol. 39, no. 6, pp. 1362-1381, Dec. 2009, doi: 10.1109/TSMCB.2009.2015956.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "vpso",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "optimization,particle-swarm-optimization,adaptive,vectorization",
    "author": "",
    "author_email": "Filippo Airaldi <filippoairaldi@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/e7/92/c7454980d545726449d3f3e27daa4db3f652132747623ac12dbe2c2ea3aa/vpso-1.1.2.tar.gz",
    "platform": null,
    "description": "# Vectorized Particle Swarm Optimization\r\n\r\n**vpso** is a Python package for adaptive Particle Swarm Optimization (PSO) [[1]](#1) that allows to run multiple similar optimization problems in a vectorized fashion.\r\n\r\n[![PyPI version](https://badge.fury.io/py/vpso.svg)](https://badge.fury.io/py/vpso)\r\n[![Source Code License](https://img.shields.io/badge/license-MIT-blueviolet)](https://github.com/FilippoAiraldi/multi-pso/blob/master/LICENSE)\r\n![Python 3.9](https://img.shields.io/badge/python->=3.9-green.svg)\r\n\r\n[![Tests](https://github.com/FilippoAiraldi/multi-pso/actions/workflows/ci.yml/badge.svg)](https://github.com/FilippoAiraldi/multi-pso/actions/workflows/ci.yml)\r\n[![Downloads](https://static.pepy.tech/badge/vpso)](https://www.pepy.tech/projects/vpso)\r\n[![Maintainability](https://api.codeclimate.com/v1/badges/746f504e874cffeedae2/maintainability)](https://codeclimate.com/github/FilippoAiraldi/vectorized-particle-swarm/maintainability)\r\n[![Test Coverage](https://api.codeclimate.com/v1/badges/746f504e874cffeedae2/test_coverage)](https://codeclimate.com/github/FilippoAiraldi/vectorized-particle-swarm/test_coverage)\r\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\r\n\r\n---\r\n\r\n## Installation\r\n\r\nTo install the package, run\r\n\r\n```bash\r\npip install vpso\r\n```\r\n\r\n**vpso** has the following dependencies\r\n\r\n- [Numba](https://numba.pydata.org/)\r\n- [SciPy](https://scipy.org/)\r\n- [typing_extensions](https://pypi.org/project/typing-extensions/).\r\n\r\nFor playing around with the source code instead, run\r\n\r\n```bash\r\ngit clone https://github.com/FilippoAiraldi/vectorized-particle-swarm.git\r\n```\r\n\r\n---\r\n\r\n## Usage\r\n\r\n\r\n---\r\n\r\n## Examples\r\n\r\nOur [examples](https://github.com/FilippoAiraldi/vectorized-particle-swarm/tree/master/examples) subdirectory contains a simple use-case to get started with.\r\n\r\n---\r\n\r\n## License\r\n\r\nThe repository is provided under the MIT License. See the LICENSE file included with this repository.\r\n\r\n---\r\n\r\n## Author\r\n\r\n[Filippo Airaldi](https://www.tudelft.nl/staff/f.airaldi/), PhD Candidate [f.airaldi@tudelft.nl | filippoairaldi@gmail.com]\r\n\r\n> [Delft Center for Systems and Control](https://www.tudelft.nl/en/3me/about/departments/delft-center-for-systems-and-control/) in [Delft University of Technology](https://www.tudelft.nl/en/)\r\n\r\nCopyright (c) 2023 Filippo Airaldi.\r\n\r\nCopyright notice: Technische Universiteit Delft hereby disclaims all copyright interest in the program \u201ccsnn\u201d (Nueral Networks with CasADi) written by the Author(s). Prof. Dr. Ir. Fred van Keulen, Dean of 3mE.\r\n\r\n---\r\n\r\n## References\r\n\r\n<a id=\"1\">[1]</a>\r\nZ. H. Zhan, J. Zhang, Y. Li and H. S. H. Chung, \"Adaptive Particle Swarm Optimization,\" in IEEE Transactions on Systems, Man, and Cybernetics, Part B (Cybernetics), vol. 39, no. 6, pp. 1362-1381, Dec. 2009, doi: 10.1109/TSMCB.2009.2015956.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Myopic and Non-Myopic Global Optimization",
    "version": "1.1.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/FilippoAiraldi/vectorized-particle-swarm/issues",
        "Homepage": "https://github.com/FilippoAiraldi/vectorized-particle-swarm"
    },
    "split_keywords": [
        "optimization",
        "particle-swarm-optimization",
        "adaptive",
        "vectorization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9d500f3d3f1a3129e9bf74f64c597c955d46930d9d6d430ee437606c3383da3",
                "md5": "7e531d75ffaf4e618ff8075d7edad41c",
                "sha256": "79a67a2e1575d384543d7f71f8c840cdc09a59037851d814cad05617bb8ada71"
            },
            "downloads": -1,
            "filename": "vpso-1.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7e531d75ffaf4e618ff8075d7edad41c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 19160,
            "upload_time": "2023-11-12T17:04:45",
            "upload_time_iso_8601": "2023-11-12T17:04:45.515484Z",
            "url": "https://files.pythonhosted.org/packages/f9/d5/00f3d3f1a3129e9bf74f64c597c955d46930d9d6d430ee437606c3383da3/vpso-1.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e792c7454980d545726449d3f3e27daa4db3f652132747623ac12dbe2c2ea3aa",
                "md5": "5bfba992fcea58aecbd571978c2fd35e",
                "sha256": "c980e6ab064bf0daf07e7bd0b27428ef0d8f1ef79359dbd905920bd4fb58716c"
            },
            "downloads": -1,
            "filename": "vpso-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5bfba992fcea58aecbd571978c2fd35e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 19444,
            "upload_time": "2023-11-12T17:04:46",
            "upload_time_iso_8601": "2023-11-12T17:04:46.983305Z",
            "url": "https://files.pythonhosted.org/packages/e7/92/c7454980d545726449d3f3e27daa4db3f652132747623ac12dbe2c2ea3aa/vpso-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-12 17:04:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "FilippoAiraldi",
    "github_project": "vectorized-particle-swarm",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numba",
            "specs": [
                [
                    ">=",
                    "0.57.1"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.10.1"
                ]
            ]
        },
        {
            "name": "typing_extensions",
            "specs": [
                [
                    ">=",
                    "4.6.3"
                ]
            ]
        }
    ],
    "lcname": "vpso"
}
        
Elapsed time: 0.13762s