Py-BOBYQA


NamePy-BOBYQA JSON
Version 1.4.1 PyPI version JSON
download
home_pageNone
SummaryA flexible derivative-free solver for (bound constrained) general objective minimization
upload_time2024-04-11 07:19:07
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseGPL-3.0-or-later
keywords mathematics optimization derivative free optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================================================================
Py-BOBYQA: Derivative-Free Solver for Bound-Constrained Minimization
====================================================================

.. image::  https://github.com/numericalalgorithmsgroup/pybobyqa/actions/workflows/python_testing.yml/badge.svg
   :target: https://github.com/numericalalgorithmsgroup/pybobyqa/actions
   :alt: Build Status

.. image::  https://img.shields.io/badge/License-GPL%20v3-blue.svg
   :target: https://www.gnu.org/licenses/gpl-3.0
   :alt: GNU GPL v3 License

.. image:: https://img.shields.io/pypi/v/Py-BOBYQA.svg
   :target: https://pypi.python.org/pypi/Py-BOBYQA
   :alt: Latest PyPI version

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2630437.svg
   :target: https://doi.org/10.5281/zenodo.2630437
   :alt: DOI:10.5281/zenodo.2630437

.. image:: https://static.pepy.tech/personalized-badge/py-bobyqa?period=total&units=international_system&left_color=black&right_color=green&left_text=Downloads
 :target: https://pepy.tech/project/py-bobyqa
   :alt: Total downloads

Py-BOBYQA is a flexible package for solving bound-constrained general objective minimization, without requiring derivatives of the objective. At its core, it is a Python implementation of the BOBYQA algorithm by Powell, but Py-BOBYQA has extra features improving its performance on some problems (see the papers below for details). Py-BOBYQA is particularly useful when evaluations of the objective function are expensive and/or noisy.

More details about Py-BOBYQA and its enhancements over BOBYQA can be found in our papers:

1. Coralia Cartis, Jan Fiala, Benjamin Marteau and Lindon Roberts, `Improving the Flexibility and Robustness of Model-Based Derivative-Free Optimization Solvers <https://doi.org/10.1145/3338517>`_, *ACM Transactions on Mathematical Software*, 45:3 (2019), pp. 32:1-32:41 [`arXiv preprint: 1804.00154 <https://arxiv.org/abs/1804.00154>`_] 
2. Coralia Cartis, Lindon Roberts and Oliver Sheridan-Methven, `Escaping local minima with derivative-free methods: a numerical investigation <https://doi.org/10.1080/02331934.2021.1883015>`_, *Optimization*, 71:8 (2022), pp. 2343-2373. [`arXiv preprint: 1812.11343 <https://arxiv.org/abs/1812.11343>`_] 

Please cite [1] when using Py-BOBYQA for local optimization, and [1,2] when using Py-BOBYQA's global optimization heuristic functionality. For reproducibility of all figures, please feel free to contact the authors.

The original paper by Powell is: M. J. D. Powell, The BOBYQA algorithm for bound constrained optimization without derivatives, technical report DAMTP 2009/NA06, University of Cambridge (2009), and the original Fortran implementation is available `here <http://mat.uc.pt/~zhang/software.html>`_.

If you are interested in solving least-squares minimization problems, you may wish to try `DFO-LS <https://github.com/numericalalgorithmsgroup/dfols>`_, which has the same features as Py-BOBYQA (plus some more), and exploits the least-squares problem structure, so performs better on such problems.

Documentation
-------------
See manual.pdf or the `online manual <https://numericalalgorithmsgroup.github.io/pybobyqa/>`_.

Citation
--------
If you use Py-BOBYQA in a paper, please cite:

Cartis, C., Fiala, J., Marteau, B. and Roberts, L., Improving the Flexibility and Robustness of Model-Based Derivative-Free Optimization Solvers, *ACM Transactions on Mathematical Software*, 45:3 (2019), pp. 32:1-32:41.

If you use Py-BOBYQA's global optimization heuristic, please cite the above and also

Cartis, C., Roberts, L. and Sheridan-Methven, O., Escaping local minima with derivative-free methods: a numerical investigation, Optimization, 71:8 (2022), pp. 2343-2373. 

Requirements
------------
Py-BOBYQA requires the following software to be installed:

* Python 3.8 or higher (http://www.python.org/)

Additionally, the following python packages should be installed (these will be installed automatically if using *pip*, see `Installation using pip`_):

* NumPy (http://www.numpy.org/)
* SciPy (http://www.scipy.org/)
* Pandas (http://pandas.pydata.org/)

**Optional package:** Py-BOBYQA versions 1.2 and higher also support the `trustregion <https://github.com/lindonroberts/trust-region>`_ package for fast trust-region subproblem solutions. To install this, make sure you have a Fortran compiler (e.g. `gfortran <https://gcc.gnu.org/wiki/GFortran>`_) and NumPy installed, then run :code:`pip install trustregion`. You do not have to have trustregion installed for Py-BOBYQA to work, and it is not installed by default.

Installation using pip
----------------------
For easy installation, use `pip <http://www.pip-installer.org/>`_ as root:

 .. code-block:: bash

    $ [sudo] pip install Py-BOBYQA

or alternatively *easy_install*:

 .. code-block:: bash

    $ [sudo] easy_install Py-BOBYQA

If you do not have root privileges or you want to install Py-BOBYQA for your private use, you can use:

 .. code-block:: bash

    $ pip install --user Py-BOBYQA

which will install Py-BOBYQA in your home directory.

Note that if an older install of Py-BOBYQA is present on your system you can use:

 .. code-block:: bash

    $ [sudo] pip install --upgrade Py-BOBYQA

to upgrade Py-BOBYQA to the latest version.

Manual installation
-------------------
Alternatively, you can download the source code from `Github <https://github.com/numericalalgorithmsgroup/pybobyqa>`_ and unpack as follows:

 .. code-block:: bash

    $ git clone https://github.com/numericalalgorithmsgroup/pybobyqa
    $ cd pybobyqa

Py-BOBYQA is written in pure Python and requires no compilation. It can be installed using:

 .. code-block:: bash

    $ [sudo] pip install .

If you do not have root privileges or you want to install Py-BOBYQA for your private use, you can use:

 .. code-block:: bash

    $ pip install --user .

instead.

To upgrade Py-BOBYQA to the latest version, navigate to the top-level directory (i.e. the one containing :code:`setup.py`) and rerun the installation using :code:`pip`, as above:

 .. code-block:: bash

    $ git pull
    $ [sudo] pip install .  # with admin privileges

Testing
-------
If you installed Py-BOBYQA manually, you can test your installation using the pytest package:

 .. code-block:: bash

    $ pip install pytest
    $ python -m pytest --pyargs pybobyqa

Alternatively, the HTML documentation provides some simple examples of how to run Py-BOBYQA.

Examples
--------
Examples of how to run Py-BOBYQA are given in the `online documentation <https://numericalalgorithmsgroup.github.io/pybobyqa/>`_, and the `examples directory <https://github.com/numericalalgorithmsgroup/pybobyqa/tree/master/examples>`_ in Github.

Uninstallation
--------------
If Py-BOBYQA was installed using *pip* you can uninstall as follows:

 .. code-block:: bash

    $ [sudo] pip uninstall Py-BOBYQA

If Py-BOBYQA was installed manually you have to remove the installed files by hand (located in your python site-packages directory).

Bugs
----
Please report any bugs using GitHub's issue tracker.

License
-------
This algorithm is released under the GNU GPL license. Please `contact NAG <http://www.nag.com/content/worldwide-contact-information>`_ for alternative licensing.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "Py-BOBYQA",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Lindon Roberts <lindon.roberts@sydney.edu.au>",
    "keywords": "mathematics, optimization, derivative free optimization",
    "author": null,
    "author_email": "Lindon Roberts <lindon.roberts@sydney.edu.au>",
    "download_url": "https://files.pythonhosted.org/packages/e1/44/5562851502c7f80f27c8da84a3563c671c9526ef4dfcff1512c1e9ad4c78/Py-BOBYQA-1.4.1.tar.gz",
    "platform": null,
    "description": "====================================================================\nPy-BOBYQA: Derivative-Free Solver for Bound-Constrained Minimization\n====================================================================\n\n.. image::  https://github.com/numericalalgorithmsgroup/pybobyqa/actions/workflows/python_testing.yml/badge.svg\n   :target: https://github.com/numericalalgorithmsgroup/pybobyqa/actions\n   :alt: Build Status\n\n.. image::  https://img.shields.io/badge/License-GPL%20v3-blue.svg\n   :target: https://www.gnu.org/licenses/gpl-3.0\n   :alt: GNU GPL v3 License\n\n.. image:: https://img.shields.io/pypi/v/Py-BOBYQA.svg\n   :target: https://pypi.python.org/pypi/Py-BOBYQA\n   :alt: Latest PyPI version\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2630437.svg\n   :target: https://doi.org/10.5281/zenodo.2630437\n   :alt: DOI:10.5281/zenodo.2630437\n\n.. image:: https://static.pepy.tech/personalized-badge/py-bobyqa?period=total&units=international_system&left_color=black&right_color=green&left_text=Downloads\n :target: https://pepy.tech/project/py-bobyqa\n   :alt: Total downloads\n\nPy-BOBYQA is a flexible package for solving bound-constrained general objective minimization, without requiring derivatives of the objective. At its core, it is a Python implementation of the BOBYQA algorithm by Powell, but Py-BOBYQA has extra features improving its performance on some problems (see the papers below for details). Py-BOBYQA is particularly useful when evaluations of the objective function are expensive and/or noisy.\n\nMore details about Py-BOBYQA and its enhancements over BOBYQA can be found in our papers:\n\n1. Coralia Cartis, Jan Fiala, Benjamin Marteau and Lindon Roberts, `Improving the Flexibility and Robustness of Model-Based Derivative-Free Optimization Solvers <https://doi.org/10.1145/3338517>`_, *ACM Transactions on Mathematical Software*, 45:3 (2019), pp. 32:1-32:41 [`arXiv preprint: 1804.00154 <https://arxiv.org/abs/1804.00154>`_] \n2. Coralia Cartis, Lindon Roberts and Oliver Sheridan-Methven, `Escaping local minima with derivative-free methods: a numerical investigation <https://doi.org/10.1080/02331934.2021.1883015>`_, *Optimization*, 71:8 (2022), pp. 2343-2373. [`arXiv preprint: 1812.11343 <https://arxiv.org/abs/1812.11343>`_] \n\nPlease cite [1] when using Py-BOBYQA for local optimization, and [1,2] when using Py-BOBYQA's global optimization heuristic functionality. For reproducibility of all figures, please feel free to contact the authors.\n\nThe original paper by Powell is: M. J. D. Powell, The BOBYQA algorithm for bound constrained optimization without derivatives, technical report DAMTP 2009/NA06, University of Cambridge (2009), and the original Fortran implementation is available `here <http://mat.uc.pt/~zhang/software.html>`_.\n\nIf you are interested in solving least-squares minimization problems, you may wish to try `DFO-LS <https://github.com/numericalalgorithmsgroup/dfols>`_, which has the same features as Py-BOBYQA (plus some more), and exploits the least-squares problem structure, so performs better on such problems.\n\nDocumentation\n-------------\nSee manual.pdf or the `online manual <https://numericalalgorithmsgroup.github.io/pybobyqa/>`_.\n\nCitation\n--------\nIf you use Py-BOBYQA in a paper, please cite:\n\nCartis, C., Fiala, J., Marteau, B. and Roberts, L., Improving the Flexibility and Robustness of Model-Based Derivative-Free Optimization Solvers, *ACM Transactions on Mathematical Software*, 45:3 (2019), pp. 32:1-32:41.\n\nIf you use Py-BOBYQA's global optimization heuristic, please cite the above and also\n\nCartis, C., Roberts, L. and Sheridan-Methven, O., Escaping local minima with derivative-free methods: a numerical investigation, Optimization, 71:8 (2022), pp. 2343-2373. \n\nRequirements\n------------\nPy-BOBYQA requires the following software to be installed:\n\n* Python 3.8 or higher (http://www.python.org/)\n\nAdditionally, the following python packages should be installed (these will be installed automatically if using *pip*, see `Installation using pip`_):\n\n* NumPy (http://www.numpy.org/)\n* SciPy (http://www.scipy.org/)\n* Pandas (http://pandas.pydata.org/)\n\n**Optional package:** Py-BOBYQA versions 1.2 and higher also support the `trustregion <https://github.com/lindonroberts/trust-region>`_ package for fast trust-region subproblem solutions. To install this, make sure you have a Fortran compiler (e.g. `gfortran <https://gcc.gnu.org/wiki/GFortran>`_) and NumPy installed, then run :code:`pip install trustregion`. You do not have to have trustregion installed for Py-BOBYQA to work, and it is not installed by default.\n\nInstallation using pip\n----------------------\nFor easy installation, use `pip <http://www.pip-installer.org/>`_ as root:\n\n .. code-block:: bash\n\n    $ [sudo] pip install Py-BOBYQA\n\nor alternatively *easy_install*:\n\n .. code-block:: bash\n\n    $ [sudo] easy_install Py-BOBYQA\n\nIf you do not have root privileges or you want to install Py-BOBYQA for your private use, you can use:\n\n .. code-block:: bash\n\n    $ pip install --user Py-BOBYQA\n\nwhich will install Py-BOBYQA in your home directory.\n\nNote that if an older install of Py-BOBYQA is present on your system you can use:\n\n .. code-block:: bash\n\n    $ [sudo] pip install --upgrade Py-BOBYQA\n\nto upgrade Py-BOBYQA to the latest version.\n\nManual installation\n-------------------\nAlternatively, you can download the source code from `Github <https://github.com/numericalalgorithmsgroup/pybobyqa>`_ and unpack as follows:\n\n .. code-block:: bash\n\n    $ git clone https://github.com/numericalalgorithmsgroup/pybobyqa\n    $ cd pybobyqa\n\nPy-BOBYQA is written in pure Python and requires no compilation. It can be installed using:\n\n .. code-block:: bash\n\n    $ [sudo] pip install .\n\nIf you do not have root privileges or you want to install Py-BOBYQA for your private use, you can use:\n\n .. code-block:: bash\n\n    $ pip install --user .\n\ninstead.\n\nTo upgrade Py-BOBYQA to the latest version, navigate to the top-level directory (i.e. the one containing :code:`setup.py`) and rerun the installation using :code:`pip`, as above:\n\n .. code-block:: bash\n\n    $ git pull\n    $ [sudo] pip install .  # with admin privileges\n\nTesting\n-------\nIf you installed Py-BOBYQA manually, you can test your installation using the pytest package:\n\n .. code-block:: bash\n\n    $ pip install pytest\n    $ python -m pytest --pyargs pybobyqa\n\nAlternatively, the HTML documentation provides some simple examples of how to run Py-BOBYQA.\n\nExamples\n--------\nExamples of how to run Py-BOBYQA are given in the `online documentation <https://numericalalgorithmsgroup.github.io/pybobyqa/>`_, and the `examples directory <https://github.com/numericalalgorithmsgroup/pybobyqa/tree/master/examples>`_ in Github.\n\nUninstallation\n--------------\nIf Py-BOBYQA was installed using *pip* you can uninstall as follows:\n\n .. code-block:: bash\n\n    $ [sudo] pip uninstall Py-BOBYQA\n\nIf Py-BOBYQA was installed manually you have to remove the installed files by hand (located in your python site-packages directory).\n\nBugs\n----\nPlease report any bugs using GitHub's issue tracker.\n\nLicense\n-------\nThis algorithm is released under the GNU GPL license. Please `contact NAG <http://www.nag.com/content/worldwide-contact-information>`_ for alternative licensing.\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "A flexible derivative-free solver for (bound constrained) general objective minimization",
    "version": "1.4.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/numericalalgorithmsgroup/pybobyqa/issues/",
        "Documentation": "https://numericalalgorithmsgroup.github.io/pybobyqa/",
        "Download": "https://github.com/numericalalgorithmsgroup/pybobyqa/releases/",
        "Homepage": "https://github.com/numericalalgorithmsgroup/pybobyqa",
        "Source Code": "https://github.com/numericalalgorithmsgroup/pybobyqa"
    },
    "split_keywords": [
        "mathematics",
        " optimization",
        " derivative free optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd00dcbd6f72ffb8e99089349347561be1e6e0bb84d31ac21fb4a8d18f591009",
                "md5": "2058c24689cd3e8f651f3b5a3b595e04",
                "sha256": "3730086d659b353b9f569d49a93ddf5698baffc8ed153fd5911d962ff4694b3e"
            },
            "downloads": -1,
            "filename": "Py_BOBYQA-1.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2058c24689cd3e8f651f3b5a3b595e04",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 54868,
            "upload_time": "2024-04-11T07:19:05",
            "upload_time_iso_8601": "2024-04-11T07:19:05.866971Z",
            "url": "https://files.pythonhosted.org/packages/fd/00/dcbd6f72ffb8e99089349347561be1e6e0bb84d31ac21fb4a8d18f591009/Py_BOBYQA-1.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1445562851502c7f80f27c8da84a3563c671c9526ef4dfcff1512c1e9ad4c78",
                "md5": "d7052db93ff08535dbfe94807c159e61",
                "sha256": "f698848e372fa0625fb9fd3a7a8b4f557804d7858b23a45d8187ffaea6341e33"
            },
            "downloads": -1,
            "filename": "Py-BOBYQA-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d7052db93ff08535dbfe94807c159e61",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 48499,
            "upload_time": "2024-04-11T07:19:07",
            "upload_time_iso_8601": "2024-04-11T07:19:07.739791Z",
            "url": "https://files.pythonhosted.org/packages/e1/44/5562851502c7f80f27c8da84a3563c671c9526ef4dfcff1512c1e9ad4c78/Py-BOBYQA-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 07:19:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "numericalalgorithmsgroup",
    "github_project": "pybobyqa",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "py-bobyqa"
}
        
Elapsed time: 0.22274s