poli, a library of discrete objective functions
Project description
poli
🧪, a library for discrete objective functions
poli
is a library of discrete objective functions for benchmarking optimization algorithms.
Black boxes
Features
- 🔲 isolation of black box function calls inside conda environments. Don't worry about clashes w. black box requirements, poli will create the relevant conda environments for you.
- 🗒️ logging each black box call using observers.
- A numpy interface. Inputs are
np.array
s of strings, outputs arenp.array
s of floats. SMILES
andSELFIES
support for small molecule manipulation.
Getting started
To install poli
, we recommend creating a fresh conda environment
conda create -n poli-base python=3.9
conda activate poli-base
pip install git+https://github.com/MachineLearningLifeScience/poli.git@dev
To check if everything went well, you can run
$ python -c "from poli import create"
An example: dockstring
In this next example, we estimate the docking score of the example provided in dockstring
:
import numpy as np
from poli import objective_factory
problem = objective_factory.create(
name="dockstring",
target_name="drd2"
)
f, x0 = problem.black_box, problem.x0
y0 = f(x0)
# x0: [['C' 'C' '1' '=' 'C' '(' 'C', ...]] (i.e. Risperidone's SMILES)
# y0: 11.9
print(x0, y0)
Cite us and other relevant work
If you use certain black boxes, we expect you to cite the relevant work. Check inside the documentation of each black box for the relevant references.
Where can I find the documentation?
The main documentation site is hosted as a GitHub page here: https://machinelearninglifescience.github.io/poli-docs/
Building the documentation locally
If you install the requirements-dev.txt
via
pip install -r requirements-dev.txt
then you will have access to sphinx
. You should be able to build the documentation by going to the docs folder and building it:
cd docs/
make html
Afterwards, you can enter the build
folder and open index.html
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file poli-core-1.1.0.tar.gz
.
File metadata
- Download URL: poli-core-1.1.0.tar.gz
- Upload date:
- Size: 4.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 727c63518994c6ef2d298fb6e5d75ff65d220357d90bcda912768973ea6b9e60 |
|
MD5 | 8cb52fbb73fc01c28a764bd564a138e8 |
|
BLAKE2b-256 | 47ad618573f48c0772121707dd20c0ac6dafd2aa2570e0cc562024a68aad9eb3 |
File details
Details for the file poli_core-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: poli_core-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89188f30d5806f796e6beb0315b7e287ddfab1a6e20172117814fd72df2399e3 |
|
MD5 | 2b9245630a57f5bcec67a3682ef44e04 |
|
BLAKE2b-256 | 767554dd37df92db83f9959b0e78658f43ddabe86043897f25a0e0e9e48844cd |