Skip to main content

Python library that designs and executes experiments on Python functions, enabling rapid experimentation.

Project description

raxpy, Python library to rapidly design and execute experiments

Testing CI - Test Code Coverage
Meta License: MIT

Description

raxpy is a Python library that designs and executes experiments on Python annotated functions. Given a Python function provided by the user, raxpy introspects the function signature to derive an experiment input-space. With a function's derived input-space, raxpy utilizes different experiment design algorithms to create a small set of function arguments, i.e., the design points, that attempt to cover the whole input-space. With the experiment design, raxpy maps the design points to the function's arguments to execute the function with each point.

To address limitations in factorial and random point selection algorithms, raxpy provide space-filling design algorithms to generate insightful results from a small number of function executions. For more information, see https://arxiv.org/abs/2501.03398.

Usage

  1. Install raxpy if not already installed.
  2. Import raxpy and typing Annotation
  3. Create a annotated function that is to be the subject of experimentation
from typing import Annotated
import raxpy


def f(
    age:Annotated[float, raxpy.Float(label="Age", lb=20.0, ub=80.0)],
    bmi:Annotated[float, raxpy.Float(label="BMI", lb=18.0, ub=40.0)],
    blood_pressure:Annotated[float, raxpy.Float(label="Blood Pressure", lb=90.0, ub=180.0)]
)-> float:
    
    glucose_factor = 0 if glucose is None else (glucose - 70) / (200 - 70)
    cholesterol_factor = 0 if cholesterol is None else (cholesterol - 150) / (300 - 150)

    bmi = (
        (age / 80) +
        ((bmi - 18) / (40 - 18)) +
        ((blood_pressure - 90) / (180 - 90)) +
        (glucose_factor) +
        (cholesterol_factor) -
        (physical_activity / 2)
    )

    return bmi
  1. Run experiment
inputs, outputs = raxpy.perform_experiment(f, n_points=10)

See examples folder for more usage examples.

Features

raxpy can execute experiments on functions with the following types of parameters:

  • float types
  • int types
  • str (categorical) types
  • Optional, None types
  • Hierarchical types based on dataclasses
  • Union types

Experiment Design Algorithm Support

raxpy provides extended versions of the following algorithms to support optional, hierarchical, and union typed inputs. The space-filling designs work best for exploration use cases when function executions are highly constrained by time and compute resources. Random designs work best when the function needs executed to support the creation of a very large dataset.

  • Space-filling MaxPro
  • Space-filling Uniform (using scipy)
  • Random

Installation

raxpy requires numpy and scipy. To install with pip, execute

pip install raxpy

To execute distributed experiments with MPI, also ensure you have the appropriate MPI cluster and install mpi4py.

Support

For community support, please use GitHub issues.

Roadmap

Version 1.0

  • Refine and test configspace adapter with hyper-parameter optimization algorithms

Version x.x

The following elements are being considered for development but not scheduled.

  • Auto-generated data schema and databases
  • Advanced trial meta-data features (point ids, run-time, status, etc.)
  • Adaptive experimentation algorithms
    • Response surface methodology
    • Sequential design algorithms
  • Support of more input-space constraint types
  • Mixture constraints
  • Multi-dimensional linear constraints
  • Surrogate optimization features
  • Trial artifact management

Contributing

This project is open for new contributions. Contributions should follow the coding style as evident in codebase and be unit-tested. New dependencies should mostly be avoided; one exception is the creation of a new adapter, such as creating an adapter to use raxpy with an optimization library.

Citing

If you used raxpy to support your academic research, please cite:

https://doi.org/10.48550/arXiv.2501.03398

Project status

raxpy is being actively developed as of 2025-01-01.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

raxpy-0.3.tar.gz (2.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

raxpy-0.3-py3-none-any.whl (65.3 kB view details)

Uploaded Python 3

File details

Details for the file raxpy-0.3.tar.gz.

File metadata

  • Download URL: raxpy-0.3.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for raxpy-0.3.tar.gz
Algorithm Hash digest
SHA256 48ba93d51ecc0f95f379f5d031e2e3c4850159c0f6b35f38f439df017ff7d201
MD5 e420048bf84be321741c257fcc7368dc
BLAKE2b-256 0e06c144b115817417137bb1a183fe5801290e0ec1e8e68879aecc82d27b1241

See more details on using hashes here.

Provenance

The following attestation bundles were made for raxpy-0.3.tar.gz:

Publisher: python-package.yml on neil-r/raxpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file raxpy-0.3-py3-none-any.whl.

File metadata

  • Download URL: raxpy-0.3-py3-none-any.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for raxpy-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 41dcae73836963b105d827dc112b6816979cd8d5cc80008db774e1c12ef67bd8
MD5 5f622f88d510c8fbf9232220112f9a69
BLAKE2b-256 bb216ffd253fd3a92e7c7e3a1839f2c3006cdf5dcb589f524b44237623399873

See more details on using hashes here.

Provenance

The following attestation bundles were made for raxpy-0.3-py3-none-any.whl:

Publisher: python-package.yml on neil-r/raxpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page