BOAR has been archived and is no longer under active development.
All future development, maintenance, and new features will take place in the optimPV package.
👉 Please migrate to optimPV to access the latest tools, improvements, and ongoing support.
Vincent M. Le Corre
Larry Lüer
Institute Materials for Electronics and Energy Technology (i-MEET)
University of Erlangen-Nuremberg (FAU)
Erlangen, Germany
This repository contains the code to run the BOAR. BOAR is a Bayesian optimization procedure that can be use for two objectives:
- to optimize the parameters of a simulation to fit experimental data.
- to optimize the processing conditions in a self-driving experimental set-up.
BOAR has two main optimizer, one based on scikit-learn which uses the skopt.optimizer and one based on the BoTorch and Ax packages.
.
├── Main # Main directory, place Notebooks here to run them
├── boar # Main directory for the BOAR codes
├── core # Directory with the multi-objective optimization codes
├── agents # Directory with the different experimental agents
├── dynamic_utils # Directory with the different utility functions to solve rate equations
├── SIMsalabim_utils # Directory with the different utility functions to run SIMsalabim, the drift-diffusion simulator
├── Notebooks # Contains clean versions of the Notebooks, Notebooks need to be moved to the main directory to be used
├── Example_Data # Contains some example data for the notebooks
├── SIMsalabim # Contains the codes to run the drift-diffusion simulations using SIMsalabim
├── test # Contains the codes for testing BOAR
└── README.md
To install BOAR with pip you have two options:
- Install BOAR using the PyPI repository
pip install boar-pv
- Install BOAR using the GitHub repository First, you need to clone the repository and install the requirements. The requirements can be installed with the following command:
pip install -r requirements.txt
Similarly to the conda installation, if you plan on using the BoTorch/Ax optimizer you need to use the requirements_torch_CPU.txt file or install pytorch with the correct version for your system with the requirements.txt file.
To install the BOAR, you need to clone the repository and install the requirements. The requirements can be installed with the following command:
conda create -n boar
conda activate boar
conda install --file requirements.txt
if you want you can also clone your base environment by replacing the first line with:
conda create -n boar --clone base
If you plan on using only the scikit-learn optimizer, you can remove use the ''requirements.txt'' file, however if you plan on using the BoTorch/Ax optimizer, you have two options:
- If you only want to use the CPU just install the requirements_torch_CPU.txt file:
- If you also want to use the GPU and use CUDA you need to refer to the pytorch website to install the correct version of pytorch for your system. First start by intalling the''requirements.txt'' file as described previously then go to the 'Get Started' section https://pytorch.org/get-started/locally/ and select the correct option for your system. You should have to run a command similar to the following one:
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
If you plan on using only the scikit-learn optimizer, you can remove use the ''requirements.txt'' file, however if you plan on using the Ax & BoTorch optimizer, you have two options:
- If you only want to use the CPU just install the requirements_torch_CPU.txt file as described previously.
- If you also want to use the GPU and use CUDA you need to refer to the pytorch website to install the correct version of pytorch for your system. First start by intalling the''requirements.txt'' file as described previously then go to the 'Get Started' section https://pytorch.org/get-started/locally/ and select the correct option for your system. You should have to run a command similar to the following one:
pip install ax-platform
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
The drift-diffusion agent uses the SIMsalabim package to run the drift-diffusion simulations. If you plan on using the drift-diffusion agent, you need to install SIMsalabim. Note that the drift-diffusion agent can only be used on Linux to run the simulations in parallel and it has not been tested on Windows. However, all the other agents and functionalities of the BOAR can be used on Windows.
All the details to install SIMsalabim are detailed in the GitHub repository. To make sure that you are running the latest version of SIMsalabim, check regularly the repository.
Note that we include SIMsalabim in this repository as a submodule, however, you are free to use a different verion.
If you use SIMsalabim, please follow the instruction on the GitHub repository to cite the package.
On Linux, you have the option to run the simulations in parrallel. Sadly, not on windows (yet).
To be able to run simulations in parrallel efficiently and with any threading or multiprocessing from python we use the parallel from the GNU prallel project.
To install on linux run:
sudo apt update
sudo apt install parallel
You can also use Anaconda:
conda install -c conda-forge parallel
To test is the installation worked by using by running the following command in the terminal:
parallel --help
It is also possible to use the parmap package to run the simualtions in parallel. To switch, use the run_multiprocess_simu instead of run_parallel_simu in the RunSimulation function in /VLC_units/Simulation/RunSim.py folder. However, this does not work on Ubuntu version 22.04 but seems to work on older versions.
This repository is still under development. If you find any bugs or have any questions, please contact us.