Metadata-Version: 2.1
Name: bofire
Version: 0.0.8
Home-page: https://github.com/experimental-design/bofire
Author: 
License: BSD-3
Keywords: Bayesian optimization,Multi-objective optimization,Experimental design
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Scientific/Engineering
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Requires-Python: >=3.9.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pydantic<2.0,>=1.10.0
Requires-Dist: scipy>=1.7
Requires-Dist: typing-extensions
Provides-Extra: optimization
Requires-Dist: botorch>=0.9.4; extra == "optimization"
Requires-Dist: multiprocess; extra == "optimization"
Requires-Dist: plotly; extra == "optimization"
Requires-Dist: formulaic>=0.6.0; extra == "optimization"
Requires-Dist: cloudpickle>=2.0.0; extra == "optimization"
Requires-Dist: sympy>=1.12; extra == "optimization"
Requires-Dist: scikit-learn>=1.0.0; extra == "optimization"
Provides-Extra: xgb
Requires-Dist: xgboost>=1.7.5; extra == "xgb"
Provides-Extra: cheminfo
Requires-Dist: rdkit>=2023.3.2; extra == "cheminfo"
Requires-Dist: scikit-learn>=1.0.0; extra == "cheminfo"
Requires-Dist: mordred; extra == "cheminfo"
Provides-Extra: tests
Requires-Dist: mock; extra == "tests"
Requires-Dist: mopti; extra == "tests"
Requires-Dist: pyright==1.1.305; extra == "tests"
Requires-Dist: pytest; extra == "tests"
Requires-Dist: pytest-cov; extra == "tests"
Requires-Dist: papermill; extra == "tests"
Requires-Dist: jupyter; extra == "tests"
Requires-Dist: matplotlib; extra == "tests"
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: mkdocs-material; extra == "docs"
Requires-Dist: mkdocs-jupyter; extra == "docs"
Requires-Dist: mkdocstrings>=0.18; extra == "docs"
Requires-Dist: mkdocstrings-python-legacy; extra == "docs"
Requires-Dist: mike; extra == "docs"

# BoFire

[![Test](https://github.com/experimental-design/bofire/workflows/Tests/badge.svg)](https://github.com/experimental-design/bofire/actions?query=workflow%3ATests)
[![Lint](https://github.com/experimental-design/bofire/workflows/Lint/badge.svg)](https://github.com/experimental-design/bofire/actions?query=workflow%3ALint)
[![Docs](https://github.com/experimental-design/bofire/workflows/Docs/badge.svg)](https://github.com/experimental-design/bofire/actions?query=workflow%3ADocs)
[![PyPI](https://img.shields.io/pypi/v/bofire.svg)](https://pypi.org/project/bofire)

BoFire is a **B**ayesian **O**ptimization **F**ramework **I**ntended for **R**eal **E**xperiments. 

Why BoFire?

BoFire ...

- supports mixed continuous, discrete and categorical parameter spaces for system inputs and outputs,
- separates objectives (minimize, maximize, close-to-target) from the outputs on which they operate,
- supports different specific and generic constraints as well as black-box output constraints,
- can provide flexible DoEs that fulfill constraints,
- provides sampling methods for constrained mixed variable spaces,
- serializes problems for use in RESTful APIs and json/bson DBs,
- allows easy out of the box usage of strategies for single and multi-objective Bayesian optimization, and 
- provides a high flexibility on the modelling side if needed.

## Installation

In our [docs](https://experimental-design.github.io/bofire/install/),
you can find all different options for the BoFire installation.
To install all BoFire-features you need to run
```
pip install bofire[optimization,cheminfo]
```
This will also install [BoTorch](https://botorch.org/) that depends on 
[PyTorch](https://pytorch.org/). To use the DoE package, you need to install
[Cyipopt](https://cyipopt.readthedocs.io/en/stable/)
additionally, e.g., via
```
conda install -c conda-forge cyipopt
```

## Documentation

Documentation including a section on how to get started can be found under https://experimental-design.github.io/bofire/.

## Contributing

See our [Contributing](./CONTRIBUTING.md) guidelines. If you are not sure about something or find bugs, feel free to create an issue.

By contributing you agree that your contributions will be licensed under the same license as BoFire: [BSD 3-Clause License](./LICENSE).
