VOPy
A Framework for Black-box Vector Optimization
Install / Use
/learn @Bilkent-CYBORG/VOPyREADME
VOPy: A Framework for Black-box Vector Optimization
What is VOPy?
VOPy is an open-source Python library built to address noisy black-box vector optimization problems, where the user preferences are encoded with a cone order.
<p align="center"> <img src="docs/source/_static/vopy_deps.jpg" alt="Overview of the dependencies, core modules, and built-in algorithms of VOPy" width="600px"> </p>What to do with VOPy?
VOPy includes several pre-implemented algorithms, models, orders, and problems from the literature for black-box vector optimization, allowing users to select and utilize components based on their specific needs. Specifically, you can:
- Use existing black-box vector optimization methods for new problems
- Benchmark novel algorithms with the state-of-the-art
- Utilize a wide range of existing tools in black-box vector optimization
How To Start?
Visit our website to see tutorials, examples and API references on how to use VOPy. We recommend starting out with the motivating example.
Setup
Installation using pip:
pip install vopy
Latest (Unstable) Version
To upgrade to the latest (unstable) version, run
pip install --upgrade git+https://github.com/Bilkent-CYBORG/VOPy.git
Manual installation (for development)
If you'd like to contribute, please follow CONTRIBUTING.md.
If you want a manual installation:
git clone https://github.com/Bilkent-CYBORG/VOPy.git
cd VOPy
uv sync --all-extras # Install all dependencies
# OR for specific dependency groups
# pip install -e ".[dev,test]"
For all dependencies, see pyproject.toml. Legacy files requirements.txt and environment.yml are also maintained.
Further, installing the pre-commit hooks are highly encouraged.
# Inside the package folder
pre-commit install
Contributing
Follow CONTRIBUTING.md.
Citing
If you use VOPy, please cite the following paper:
@article{yildirim2024vopy,
title={{VOPy}: A Framework for Black-box Vector Optimization},
author={Yıldırım, Yaşar Cahit and Karagözlü, Efe Mert and Korkmaz, İlter Onat and Ararat, Çağın and Tekin, Cem},
journal={arXiv preprint arXiv:2412.06604},
year={2024}
}
License
VOPy is under MIT license.
