|Travis| |codecov| |ReadTheDocs| |Downloads| |DOI|
pySOT: Python Surrogate Optimization Toolbox
--------------------------------------------
The Python Surrogate Optimization Toolbox (pySOT) is an asynchronous parallel
optimization toolbox for computationally expensive global optimization problems.
pySOT is built on top of the Plumbing for Optimization with Asynchronous Parallelism (POAP),
which is an event-driven framework for building and combining asynchronous optimization
strategies. POAP has support for both threads and MPI.
pySOT implements many popular surrogate optimization algorithms such as the
Stochastic RBF (SRBF) and DYCORS methods by Regis and Shoemaker, and the SOP
method by Krityakierne et. al. We also support Expected Improvement (EI) and
Lower Confidence Bounds (LCB), which are popular in Bayesian optimization. All
optimization algorithms can be used in serial, synchronous parallel, and
asynchronous parallel and we support both continuous and integer variables.
The toolbox is hosted on GitHub: https://github.com/dme65/pySOT
Documentation: http://pysot.readthedocs.io/
Installation
------------
Installation instructions are available at: http://pysot.readthedocs.io/en/latest/quickstart.html
Examples
--------
Several pySOT examples and notebooks can be found at:
https://github.com/dme65/pySOT/tree/master/examples
https://github.com/dme65/pySOT/tree/master/notebooks
Citing Us
---------
If you use pySOT, please cite the following paper:
`David Eriksson, David Bindel, Christine A. Shoemaker. pySOT and POAP: An event-driven asynchronous framework for surrogate optimization. arXiv preprint arXiv:1908.00420, 2019`_
.. code-block:: html
@article{eriksson2019pysot,
title={pySOT and POAP: An event-driven asynchronous framework for surrogate optimization},
author={Eriksson, David and Bindel, David and Shoemaker, Christine A},
journal={arXiv preprint arXiv:1908.00420},
year={2019}
}
FAQ
---
| Q: Can I use pySOT with MPI?
| A: Yes. You need to install mpi4py in order to use the MPIController in POAP.
|
| Q: I used pySOT for my research and want to cite it
| A: Please cite our preprint_ which is currently under review!
|
| Q: Is there support for Python 2?
| A: Python 2 support was removed in version 0.2.0
|
| Q: I can't find the MARS interpolant
| A: You need to install py-earth in order to use MARS. More information is
available here: https://github.com/scikit-learn-contrib/py-earth
|
.. _`David Eriksson, David Bindel, Christine A. Shoemaker. pySOT and POAP: An event-driven asynchronous framework for surrogate optimization. arXiv preprint arXiv:1908.00420, 2019`: https://arxiv.org/abs/1908.00420
.. _preprint: https://arxiv.org/abs/1908.00420
.. |Travis| image:: https://travis-ci.org/dme65/pySOT.svg?branch=master
:target: https://travis-ci.org/dme65/pySOT
.. |ReadTheDocs| image:: https://readthedocs.org/projects/pysot/badge/?version=latest
:target: http://pysot.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. |DOI| image:: https://zenodo.org/badge/36836292.svg
:target: https://zenodo.org/badge/latestdoi/36836292
.. |codecov| image:: https://codecov.io/gh/dme65/pySOT/branch/dme/graph/badge.svg
:target: https://codecov.io/gh/dme65/pySOT
.. |Downloads| image:: https://pepy.tech/badge/pysot
:target: https://pepy.tech/project/pySOT
Raw data
{
"_id": null,
"home_page": "https://github.com/dme65/pySOT",
"name": "pySOT",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "David Eriksson, David Bindel, Christine Shoemaker",
"author_email": "dme65@cornell.edu, bindel@cornell.edu, shoemaker@nus.edu.sg",
"download_url": "https://files.pythonhosted.org/packages/c8/38/9f980e8d985151b59b0d2f38b24ab42407623657e98bbda686d1a9be8ed0/pySOT-0.3.3.tar.gz",
"platform": "",
"description": "|Travis| |codecov| |ReadTheDocs| |Downloads| |DOI|\n\npySOT: Python Surrogate Optimization Toolbox\n--------------------------------------------\n\nThe Python Surrogate Optimization Toolbox (pySOT) is an asynchronous parallel\noptimization toolbox for computationally expensive global optimization problems.\npySOT is built on top of the Plumbing for Optimization with Asynchronous Parallelism (POAP),\nwhich is an event-driven framework for building and combining asynchronous optimization\nstrategies. POAP has support for both threads and MPI.\n\npySOT implements many popular surrogate optimization algorithms such as the\nStochastic RBF (SRBF) and DYCORS methods by Regis and Shoemaker, and the SOP\nmethod by Krityakierne et. al. We also support Expected Improvement (EI) and\nLower Confidence Bounds (LCB), which are popular in Bayesian optimization. All\noptimization algorithms can be used in serial, synchronous parallel, and\nasynchronous parallel and we support both continuous and integer variables.\n\nThe toolbox is hosted on GitHub: https://github.com/dme65/pySOT\n\nDocumentation: http://pysot.readthedocs.io/\n\nInstallation\n------------\n\nInstallation instructions are available at: http://pysot.readthedocs.io/en/latest/quickstart.html\n\nExamples\n--------\n\nSeveral pySOT examples and notebooks can be found at:\n\nhttps://github.com/dme65/pySOT/tree/master/examples\n\nhttps://github.com/dme65/pySOT/tree/master/notebooks\n\n\nCiting Us\n---------\n\nIf you use pySOT, please cite the following paper:\n`David Eriksson, David Bindel, Christine A. Shoemaker. pySOT and POAP: An event-driven asynchronous framework for surrogate optimization. arXiv preprint arXiv:1908.00420, 2019`_\n\n.. code-block:: html\n\n @article{eriksson2019pysot,\n title={pySOT and POAP: An event-driven asynchronous framework for surrogate optimization},\n author={Eriksson, David and Bindel, David and Shoemaker, Christine A},\n journal={arXiv preprint arXiv:1908.00420},\n year={2019}\n }\n\nFAQ\n---\n\n| Q: Can I use pySOT with MPI?\n| A: Yes. You need to install mpi4py in order to use the MPIController in POAP.\n|\n| Q: I used pySOT for my research and want to cite it\n| A: Please cite our preprint_ which is currently under review!\n|\n| Q: Is there support for Python 2?\n| A: Python 2 support was removed in version 0.2.0\n|\n| Q: I can't find the MARS interpolant\n| A: You need to install py-earth in order to use MARS. More information is\n available here: https://github.com/scikit-learn-contrib/py-earth\n|\n\n.. _`David Eriksson, David Bindel, Christine A. Shoemaker. pySOT and POAP: An event-driven asynchronous framework for surrogate optimization. arXiv preprint arXiv:1908.00420, 2019`: https://arxiv.org/abs/1908.00420\n.. _preprint: https://arxiv.org/abs/1908.00420\n.. |Travis| image:: https://travis-ci.org/dme65/pySOT.svg?branch=master\n :target: https://travis-ci.org/dme65/pySOT\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/pysot/badge/?version=latest\n :target: http://pysot.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n.. |DOI| image:: https://zenodo.org/badge/36836292.svg\n :target: https://zenodo.org/badge/latestdoi/36836292\n.. |codecov| image:: https://codecov.io/gh/dme65/pySOT/branch/dme/graph/badge.svg\n :target: https://codecov.io/gh/dme65/pySOT\n.. |Downloads| image:: https://pepy.tech/badge/pysot\n :target: https://pepy.tech/project/pySOT\n\n\n",
"bugtrack_url": null,
"license": "LICENSE.rst",
"summary": "Surrogate Optimization Toolbox",
"version": "0.3.3",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5e4021f2eed437c2ff83483c672ae97ecfd1fb0fbe13646cf0b0ac00f62a2b1a",
"md5": "eba2f0e7fb053bbc61674c1fe07c26bd",
"sha256": "c01fb8b90c8ac7176eed243a43a8951b2f432490d0e8497b81503f1a1f9f31f6"
},
"downloads": -1,
"filename": "pySOT-0.3.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "eba2f0e7fb053bbc61674c1fe07c26bd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 72724,
"upload_time": "2020-06-22T19:19:49",
"upload_time_iso_8601": "2020-06-22T19:19:49.734279Z",
"url": "https://files.pythonhosted.org/packages/5e/40/21f2eed437c2ff83483c672ae97ecfd1fb0fbe13646cf0b0ac00f62a2b1a/pySOT-0.3.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8389f980e8d985151b59b0d2f38b24ab42407623657e98bbda686d1a9be8ed0",
"md5": "2cf4262efc95db0c90d9f0af41363ad0",
"sha256": "877b43548661c40258d3de839f1c9866a92c5bce7c9e0ed1e73b685bdfbd0083"
},
"downloads": -1,
"filename": "pySOT-0.3.3.tar.gz",
"has_sig": false,
"md5_digest": "2cf4262efc95db0c90d9f0af41363ad0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 210310,
"upload_time": "2020-06-22T19:19:51",
"upload_time_iso_8601": "2020-06-22T19:19:51.894884Z",
"url": "https://files.pythonhosted.org/packages/c8/38/9f980e8d985151b59b0d2f38b24ab42407623657e98bbda686d1a9be8ed0/pySOT-0.3.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2020-06-22 19:19:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "dme65",
"github_project": "pySOT",
"travis_ci": true,
"coveralls": true,
"github_actions": false,
"lcname": "pysot"
}