Skip to main content

Python library designed to analyze and compare the performance of different algorithms across multiple problems using non-parametric statistical tests

Project description

SAES: Stochastic Algorithm Evaluation Suite

SAES

CI PyPI Version PyPI Python version PyPI License GitHub Pages Ask DeepWiki

SAES is a Python library designed to analyse and compare the performance of stochastic algorithms (e.g. metaheuristics and some machine learning techniques) on multiple problems.

The current version of the tool offers the following capabilities:

  1. Seamless CSV data processing

    • Import and preprocess experiment results effortlessly.
    • Handle datasets of varying sizes with ease.
  2. Statistical analysis

    • Non-parametric tests:
      • Friedman test
      • Friedman aligned-rank test
      • Quade test
      • Wilcoxon signed-rank test
    • Parametric tests:
      • T-Test
      • Anova
    • Post hoc analysis:
      • Nemenyi test (critical distance)
  3. Report generation

    • Automated LaTeX reports with the following types of tables:
      • Median table
      • Median table with Friedman test
      • Median table with Wilcoxon pairwise test (pivot-based)
      • Pairwise Wilcoxon test table (1-to-1 comparison)
      • Friedman P-Values table (for multiple friedman test variations)
      • Mean table with Anova test
      • Mean table with T-Test pairewise test (pivot-based)
      • Pairwise T-Test table (1-to-1 comparison)
  4. Visualization

    • Boxplot graphs for algorithm comparison.
    • Critical distance plots for statistical significance.
    • Multiobjetive Pareto Front plots in the Multiobjective module.
    • HTML generation for intuitive analysis.
    • Bayesian Posterior Plot for probabilistic comparison of algorithm performance.
    • Violin Plot for algorithm performance distribution.
    • Histogram Plot for visualizing the distribution of algorithm performance.
  5. CL Interface

    • Command Line feature to access the different SAES functions

This tool is aimed at researchers and developers interested in algorithm benchmarking studies for artificial intelligence, optimization, machine learning, and more.

SAES is a new project that is in its early stages of development. Feel free to open issues for comments, suggestions and bug reports.

📖 Context

A stochastic algorithm is an algorithm that incorporates randomness as part of its logic. This randomness leads to variability in outcomes even when applied to the same problem with the same initial conditions. Stochastic algorithms are widely used in various fields, including optimization, machine learning, and simulation, due to their ability to explore larger solution spaces and avoid local optima. Analyzing and comparing stochastic algorithms pose challenges due to their inherent randomness due to the fact that single run does not provide a complete picture of its performance; instead, multiple runs are necessary to capture the distribution of possible outcomes. This variability necessitates a statistical-based methodology based on descriptive (mean, median, standard deviation, ...) and inferential (hypothesis testing) statistics and visualization.

SAES assumes that the results of comparative study between a number of algorithms is provided in a CSV file with this scheme:

  • Algorithm (string): Algorithm name.
  • Instance (string): Instance name.
  • MetricName (string): Name of the quality metric used to evaluate the algorithm performace on the instance.
  • ExecutionId (integer): Unique identifier for each algorithm run .
  • MetricValue (double): Value of the metric corresponding to the run.

Example of Data file content

Algorithm Instance MetricName ExecutionId MetricValue
SVM Iris Accuracy 0 0.985
SVM Iris Accuracy 1 0.973
... ... ... ... ...

You will also need a second file to store the information of the different metrics that you to make study. The file must have the following scheme:

  • MetricName (string): Name of the quality metric used to evaluate the algorithm performace on the instance.
  • Maximize (boolean): Boolean value to show whether the metric value in that row must be maximized or minimized.

Example of Metric file content

MetricName Maximize
Accuracy True
Loss False
... ...

SAES API

The SAES library offers a range of functions categorized into three groups, corresponding to its three main features. The following links provide the SAES Tutorial and the SAES API documentation that includes a detailed list of features.

🛠 Requirements

  • Python: >= 3.10

📦 Installation

Using pip (Recommended for Users)

pip install SAES

For Development

We recommend using uv for fast dependency management:

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone and setup
git clone https://github.com/jMetal/SAES.git
cd SAES
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install -e ".[dev]"

Traditional venv Setup

python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -e ".[dev]"

Using Environment Files

For broader compatibility, environment files are provided:

# Using pip with requirements.txt
pip install -r requirements.txt

# Using conda with environment.yml
conda env create -f environment.yml
conda activate saes

🔄 Reproducibility

SAES supports deterministic seeds for reproducible research:

from SAES.statistical_tests.bayesian import bayesian_sign_test
from SAES.plots.histoplot import HistoPlot

# Bayesian tests with seed for reproducibility
result, _ = bayesian_sign_test(data, sample_size=5000, seed=42)

# Histogram plots with consistent jitter
histoplot = HistoPlot(data, metrics, "Accuracy", seed=42)

See the reproducibility documentation for details.

💻 Headless Mode

SAES can run in headless mode (without display) for automated workflows, CI/CD pipelines, and server environments:

# Set matplotlib backend
export MPLBACKEND=Agg

# Run SAES commands
python -m SAES -ls -ds data.csv -ms metrics.csv -m HV -s friedman -op results.tex
python -m SAES -bp -ds data.csv -ms metrics.csv -m HV -i Problem1 -op boxplot.png

See examples/headless_mode_example.py for a complete Python example or examples/headless_cli_example.sh for CLI usage.

🤝 Contributors

  • GitHub Emilio Rodrigo Carreira Villalta
  • GitHub Antonio J. Nebro

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

saes-1.5.0.tar.gz (59.4 MB view details)

Uploaded Source

Built Distribution

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

saes-1.5.0-py3-none-any.whl (11.4 MB view details)

Uploaded Python 3

File details

Details for the file saes-1.5.0.tar.gz.

File metadata

  • Download URL: saes-1.5.0.tar.gz
  • Upload date:
  • Size: 59.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for saes-1.5.0.tar.gz
Algorithm Hash digest
SHA256 80ede0b17e1b16bf3830e3a8db310d7beaa608582919574ac146ea559e3d29e6
MD5 940eba1a0a390dc949219d77ece99972
BLAKE2b-256 8b451a343857ee114f8f161caf0caede87f226d945ef24632da3910abd918c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for saes-1.5.0.tar.gz:

Publisher: publish.yml on jMetal/SAES

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

File details

Details for the file saes-1.5.0-py3-none-any.whl.

File metadata

  • Download URL: saes-1.5.0-py3-none-any.whl
  • Upload date:
  • Size: 11.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for saes-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 44acc8cdf8edc3b77db250c2a40662dae96e4522350a5defdc58994be4344d5d
MD5 6a0463b4f99e7ac9bb52a45c1d79a164
BLAKE2b-256 f17d5d20797cd15d6d3c09120334a4464a9b1ebbcb7f6daec18f7d1815c47b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for saes-1.5.0-py3-none-any.whl:

Publisher: publish.yml on jMetal/SAES

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