Skip to main content

Under construction! Algorithm selection framework

Project description

PyPI - Version Python versions License Python application DOI

Algorithm Selection Framework (ASF)

ASF is a lightweight yet powerful Python library for algorithm selection and empirical performance prediction. It implements various algorithm selection methods, along with algorithm pre-selection, pre-solving schedules and more features to easily create algorithm selection pipeline. ASF is a modular framework that allows easy extensions to tailor made an algorithm selector for every use-case. While ASF includes several built-in machine learning models through scikit-learn and XGBoost, it supports every model that complies with the scikit-learn API. ASF also implements empirical performance prediction, allowing to use different performance scalings.

ASF is written in Python 3 and is intended to use with Python 3.10+. It requires only scikit-learn, NumPy as Pandas as basic requirements. More advanced features (such as hyperparameter optimisation) requires additional dependencies.

You can find full documentation in: https://hadarshavit.github.io/asf/

Installation

ASF is written in Python3 and requires Python version 3.10+. The basic installation is lightweight and requires only NumPy, Pandas and scikit-learn.

ASF is currently tested on Linux machines. Mac and Windows (official) support will be released in the near future.

To install the base version run

pip install asf-lib

Additional options

Additional options include:

  • XGBoost model suppot pip install asf-lib[xgb]
  • PyTorch-based models pip install asf-lib[nn]
  • ASlib scenarios reading pip install asf-lib[aslib]

Quick start

The first step is to define a the data. It can be either NumPy array or Pandas DataFrame. The data contains of (at least) two matrices. The first defines the instance features with a row for every instance and each column defines one feature. The second is the performance data, which for which every row describes an instance and each column the performance of a single algorithm.

Here, we define some toy data on three instances, three features and three algorithms.

data = np.array(
    [
        [10, 5, 1],
        [20, 10, 2],
        [15, 8, 1.5],
    ]
)
features = pd.DataFrame(data, columns=["feature1", "feature2", "feature3"])
performance = np.array(
    [
        [120, 100, 110],
        [140, 150, 130],
        [180, 170, 190],
    ]
)
performance = pd.DataFrame(data, columns=["algo1", "algo2", "algo3"])

We can then define a selector:

from asf.selectors import PairwiseClassifier
from sklearn.ensemble import RandomForestClassifier

selector = PairwiseClassifier(model_class=RandomForestClassifier)

selector.fit(features, performance)

Next, we can use the selector to predict on unseen dta:

selector.predict(features)

Currently, ASF always returns the prediction in the ASlib format: a dictionary which has the instance id (row index, in case of a numpy array or the index of the row for a pandas dataframe) as keys and an array of tuples (predicted algorithm, budget). The selectors has only one tuple in the array, which is the selected algorithm. An example output is:

{
    0: [('algo2', None)], 
    1: [('algo3', None)], 
    2: [('algo2', None)]
}

The budget is set by default to None. To change the budget, you can pass it as an argument for the selector initialisation. Similarly, ASF minimises the performance by default. To change it, pass maxmimize=True to the selector.

Cite Us

If you use ASF, please cite the Zenodo DOI. We are currently working on publishing a paper on ASF, but by then a Zenodo citation will do it.

@software{ASF,
	author = {Hadar Shavit and Holger Hoos},
	doi = {10.5281/zenodo.15288151},
	title = {ASF: Algorithm Selection Framework},
	url = {https://doi.org/10.5281/zenodo.15288151},
	year = {in progress},
}

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

asf_lib-0.1.1.tar.gz (49.9 kB view details)

Uploaded Source

Built Distribution

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

asf_lib-0.1.1-py3-none-any.whl (74.8 kB view details)

Uploaded Python 3

File details

Details for the file asf_lib-0.1.1.tar.gz.

File metadata

  • Download URL: asf_lib-0.1.1.tar.gz
  • Upload date:
  • Size: 49.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for asf_lib-0.1.1.tar.gz
Algorithm Hash digest
SHA256 80da6712d7b48624ff36bba8678125b012277dc336d4ad0c1c4c522bb4cce617
MD5 4670b478027572ba02d263b922fe8915
BLAKE2b-256 98e77e66db7d82f8d56a2320f3f111060b1b4f2d7e01152c627390c33348a878

See more details on using hashes here.

Provenance

The following attestation bundles were made for asf_lib-0.1.1.tar.gz:

Publisher: publish.yml on hadarshavit/asf

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

File details

Details for the file asf_lib-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: asf_lib-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 74.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for asf_lib-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f4420415337af45a9c960d3342172cab18d3ad4b7c85df077b9ceebfd48b340c
MD5 faf17e49b6b38667dc4ceb96b6e0fad7
BLAKE2b-256 394029c0b7973cc7c4e8169d5788f93f8e7e09ef32f74b2960e9ff422d1fb918

See more details on using hashes here.

Provenance

The following attestation bundles were made for asf_lib-0.1.1-py3-none-any.whl:

Publisher: publish.yml on hadarshavit/asf

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