├── .github └── workflows │ └── release.yml ├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codemeta.json ├── docs ├── .gitignore ├── Makefile ├── api.rst ├── changelog.rst ├── conf.py ├── index.rst └── tutorial.rst ├── examples ├── basic.py └── bisect.py ├── noisyopt ├── __init__.py ├── main.py ├── tests │ ├── __init__.py │ └── test_noisyopt.py └── version.py ├── paper.bib ├── paper.md ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/codemeta.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/examples/basic.py -------------------------------------------------------------------------------- /examples/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/examples/bisect.py -------------------------------------------------------------------------------- /noisyopt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/noisyopt/__init__.py -------------------------------------------------------------------------------- /noisyopt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/noisyopt/main.py -------------------------------------------------------------------------------- /noisyopt/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noisyopt/tests/test_noisyopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/noisyopt/tests/test_noisyopt.py -------------------------------------------------------------------------------- /noisyopt/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/noisyopt/version.py -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/paper.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [tool:pytest] 2 | norecursedirs = build dist 3 | 4 | [metadata] 5 | description-file = README.md 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andim/noisyopt/HEAD/setup.py --------------------------------------------------------------------------------