The goal of this project is to examine the performance of a mixture experimentalist–a hybrid of different experimental sampling strategies–in terms of its ability to recover a ground-truth model from synthetic data.
Project description
AutoRA Mixture Experimentalist
The Mixture Experimentalist identifies novel experimental conditions under which a hybrid of different experimental sampling strategies is used. This mixture can include any custom strategies such as falsification, novelty, crucial experimentation, uncertainty, elimination, aesthetic preferences, and arbitrary preferred/dispreferred regions of the space. The selection of conditions is based on a weighted sum of the scores obtained from these strategies.
Quickstart Guide
You will need:
- Python 3.8 or greater: https://www.python.org/downloads/
Mixture Experimentalist is a part of the AutoRA package:
pip install -U autora["experimentalist-sampler-mixture"]
Check your installation by running:
python -c "from autora.experimentalist.sampler.mixture import mixture_sample"
Usage
The Mixture Experimentalist can be used to select experimental conditions based on a mixture of different strategies. Here's a basic example:
from autora.experimentalist.sampler.mixture import mixture_sampler
# Define your condition pool, temperature, samplers, and parameters
condition_pool = ...
temperature = ...
samplers = ...
params = ...
# Use the mixture_sampler to select conditions
selected_conditions = mixture_sample(
condition_pool=condition_pool,
temperature=temperature,
samplers=samplers,
params=params,
num_samples=10
)
In this example, condition_pool is the pool of experimental conditions to evaluate, temperature controls the randomness of the selection (close to 0 for deterministic, higher for more random), samplers is a list of sampler functions with their weights in the mixture, and params is a dictionary of parameters for the sampler functions.
For more detailed usage instructions and examples, please refer to the documentation: https://github.com/blinodelka/mixture_experimental_strategies/blob/main/docs/basic-usage.ipynb.
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
Hashes for mixture_experimentalist-1.0.0a3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90e493fd4163cacddbcca68d50d63dcdb2bb27a26c424400a86b8cb91b32b10d |
|
MD5 | 3ee503efeac7aa1af2df40e7e00dc3c7 |
|
BLAKE2b-256 | 956b67049c9effe7548e5b1982f68db9b67a262a0f4dbd63e2dbf35feea4d023 |
Hashes for mixture_experimentalist-1.0.0a3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19725094063a3425ae0972c10872a73834b56d77594ec7c2e666f8030218a449 |
|
MD5 | 5147900112967451394ebb5ab557f543 |
|
BLAKE2b-256 | 2c4dd208302a04ef704e2582fc58a1cddb68667067bbbed14c1e27f51bd2a0ff |