Skip to main content

A modular optimization and machine learning workflow framework for hyperparameter tuning and performance benchmarking across diverse datasets.

Project description

OptiFlowX

PyPI version Python versions License: MIT Build Status

OptiFlowX is a production-oriented, modular framework for hyperparameter and configuration optimization. It combines metaheuristic and probabilistic search algorithms with flexible search-space abstractions, an easy-to-use wrapper for models, and efficient parallel evaluation—designed for both research and production use.

Key capabilities:

  • Optimize models for classification and regression tasks
  • Support for scikit-learn models and user-supplied custom models
  • Built-in metrics and user-provided custom metric callables
  • Built-in search-space definitions and fully custom search spaces
  • Parallel candidate evaluation with optional dill fallback for non-pickleable callables

Table of contents

Why OptiFlowX

  • Single, consistent API across many optimizers (metaheuristics and probabilistic methods)
  • Production-minded: packaged with docs, examples, tests, and CI
  • Extensible — add new optimizers, model wrappers, or search-space primitives

Key features

  • Unified optimizer interface (PSO, GA, ACO, GWO, SA, TPE, Bayesian, Random Search)
  • Classification and regression support
  • Plug-and-play model configs (optiflowx.models.configs.*) and ModelWrapper for CV and final fitting
  • Built-in metric helpers and a get_metric() abstraction that normalizes regression metrics for maximization
  • Flexible SearchSpace supporting continuous, discrete, and categorical parameters with sampling and grid generation
  • Parallel evaluation via ParallelExecutor with pickle/dill serialization fallbacks

Algorithms included

  • Metaheuristics / Combinatorial:
    • Particle Swarm Optimization (PSO)
    • Genetic Algorithm (GA)
    • Simulated Annealing (SA)
    • Ant Colony Optimization (ACO)
    • Grey Wolf Optimizer (GWO)
  • Probabilistic / Bayesian & related:
    • Tree-Structured Parzen Estimator (TPE)
    • Bayesian Optimization
    • Random Search

All algorithms are implemented under optiflowx.optimizers.*. Most optimizers expose a run(max_iters=...) method that returns (best_params, best_score).

Quickstart

Install (recommended inside a virtual environment):

python -m venv venv
source venv/bin/activate
pip install -e .
# Optional extras
pip install dill xgboost

Minimal example (random forest + PSO):

from sklearn.datasets import make_classification
from optiflowx.models.configs import RandomForestConfig
from optiflowx.optimizers import PSOOptimizer

X, y = make_classification(n_samples=200, n_features=12, random_state=0)
cfg = RandomForestConfig()
wrapper = cfg.get_wrapper(task_type="classification")

opt = PSOOptimizer(
  search_space=cfg.build_search_space(),
  metric="accuracy",
  model_class=wrapper.model_class,
  X=X, y=y,
  n_particles=12,
)
best_params, best_score = opt.run(max_iters=10)
print(best_score, best_params)

Examples

The examples/ directory contains runnable scripts covering common combinations:

  • classification with sklearn models and sklearn/custom metrics
  • regression with sklearn models and sklearn/custom metrics
  • examples that use CustomModelConfig for user-defined model wrappers

Run one of the example scripts directly:

python examples/classification/classification_sklearn_model_sklearn_metric.py

Search space

Use built-in configs for quick starts (e.g., RandomForestConfig().build_search_space()), or create custom spaces with optiflowx.core.search_space.SearchSpace:

from optiflowx.core import SearchSpace

s = SearchSpace()
s.add("n_estimators", "discrete", [10, 50, 100, 200])
s.add("learning_rate", "continuous", [1e-3, 0.3], log=True)
s.add("criterion", "categorical", ["gini", "entropy"])

Parallelism & multiprocessing notes

ParallelExecutor uses multiprocessing.Pool to evaluate candidates concurrently. If you pass non-pickleable callables (e.g., nested functions or closures) as custom metrics, the executor will:

  1. Try to serialize with pickle.
  2. If pickle fails and dill is installed, it will serialize using dill.
  3. If serialization is not possible and multiple workers are requested, the executor raises an error. If only one worker is used it will fall back to sequential evaluation.

If you plan to pass nested custom metrics and want parallel execution, install dill:

pip install dill

API reference — quick

High-level building blocks (see docstrings for full signatures):

  • optiflowx.core.SearchSpace — define and sample hyperparameter spaces
  • optiflowx.core.ModelWrapper — cross-val evaluation and final fitting
  • optiflowx.core.get_metric — normalized metric callables (negates regression errors so optimizers maximize)
  • optiflowx.core.ParallelExecutor — parallel candidate evaluation
  • optiflowx.optimizers.* — concrete optimizers (e.g., PSOOptimizer, GeneticOptimizer)
  • optiflowx.models.configs.* — model configs exposing build_search_space() and get_wrapper()

Typical high-level flow:

  1. Select model config from optiflowx.models.registry.MODEL_REGISTRY.
  2. Build its SearchSpace and ModelWrapper.
  3. Initialize an optimizer with the space, metric, model_class, and data.
  4. Run optimizer.run(max_iters=...) or use optiflowx.core.OptimizationEngine / MLPipeline to orchestrate runs.

Development & testing

Run tests locally (recommended in a virtualenv):

pip install -r requirements-test.txt
pytest -q

Developer tools (optional):

pip install black ruff mypy pytest pytest-cov
ruff check .
black .
mypy optiflowx

Contributing

Contributions welcome. Please follow these steps:

  1. Open an issue describing the feature or bug.
  2. Create a topic branch in your fork.
  3. Add tests for any new behavior.
  4. Submit a PR with a clear description and changelog entry.

If you plan to add new optimizers or model configs, aim for:

  • clear docstrings and examples under examples/;
  • unit tests in tests/ exercising the integration (optimizer + wrapper + executor);
  • lightweight, focused commits.

License

This project is licensed under the MIT License — see the LICENSE file for details.

Contact & citation

If you use OptiFlowX in research or production, please cite:

@software{optiflowx,
    author = {Faycal, Alikacem},
    title = {OptiFlowX: Combinatorial Hyperparameter Optimization Framework},
    year = {2025},
    url = {https://github.com/Faycal214/optiflowx}
}

Contact:

Acknowledgements

This project draws on many open-source tools and libraries including scikit-learn, Optuna, scikit-optimize, and others. See pyproject.toml for declared dependencies.


If you'd like, I can also:

  • run the test suite in this environment and report results,
  • produce a condensed one-page quick reference for the most common API calls,
  • add badges for coverage/Docs/CodeQL if you want to include them in CI.

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

optiflowx-0.0.9.tar.gz (258.4 kB view details)

Uploaded Source

Built Distribution

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

optiflowx-0.0.9-py3-none-any.whl (51.4 kB view details)

Uploaded Python 3

File details

Details for the file optiflowx-0.0.9.tar.gz.

File metadata

  • Download URL: optiflowx-0.0.9.tar.gz
  • Upload date:
  • Size: 258.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for optiflowx-0.0.9.tar.gz
Algorithm Hash digest
SHA256 bbb7d89e682afe0e6c10e62a0e7dbb11da912c2e4744f40e91551a33fbd53280
MD5 b07fd9ba9bd09dfc9e8eb2bbf67bd369
BLAKE2b-256 cdfa6a8736652a4f8731a3ba55ce33749a60be69c8f58728eddd6a8d892faf86

See more details on using hashes here.

File details

Details for the file optiflowx-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: optiflowx-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 51.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for optiflowx-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 1e2f37109121e8cee1f6957fe503c1258332341f9c8cbf183fa96a9bed07e8a3
MD5 8fa5ae2a32ee58b8fd1579ef4e8342b8
BLAKE2b-256 1f2dc48bcd1f451150f2922388ee9d70befbab0046c3a07d2f5c4b1da825b87c

See more details on using hashes here.

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