Skip to main content

A optimization library for multi-objective optimization problems.

Project description

PATATUNE

A Framework for Metaheuristic Multi-Objective Optimization for High Energy Physics

PyPI - Version Documentation


Documentation: https://cms-patatrack.github.io/patatune

Source code: https://github.com/cms-patatrack/patatune


PATATUNE is a Python package that provides a framework for multi-objective optimization algorithms, including the Multi-Objective Particle Swarm Optimization (MOPSO) method. Its primary purpose is to automate the optimization of the parameters of user-defined functions. The package has been developed with the needs of CMS and Patatrack in mind.

The key features are:

  • Easy to use and learn.
  • Pluggable Multi-objective optimization model with Multi-Objective Particle Swarm Optimization implemented via the MOPSO class.
  • Multiple objective definition supported, for any user-defined objective function.
  • Support for different parameter types (int, float, bool).
  • Built-in metrics for convergence/quality assessment: Generational Distance, Inverted GD, Hypervolume.
  • Persistence and checkpointing via FileManager (save/load pickle, CSV, Zarr); supports resuming runs and per-iteration history export.

Installation

PATATUNE is available on PyPi.

To install it you can simply run:

pip install patatune

If you want to use the latest development version on the main branch:

  1. Clone this repository

  2. Navigate into the project directory

  3. Install the package and its dependencies using pip:

    pip install .
    

You can install a project in “editable” or “develop” mode while you’re working on it. When installed as editable, a project can be edited in-place without reinstallation:

pip install -e .

Requirements

PATATUNE is written for Python 3.9+ and depends on a small set of scientific Python packages. The following are required to run the library:

Optional functionality is provided by extras:

  • numba (optional — JIT acceleration)
  • zarr==2.* (optional — save/load history in Zarr format)

These dependencies are declared in pyproject.toml and can be installed with pip (see Installation below). If you need the optional extras, install with extra:

pip install patatune[extra]

The additional example require additional libraries (matplotlib, pandas). If you want to run them, install with tests:

pip install patatune[tests]

or, to include every optional dependecy:

pip install patatune[all]

Example

Currently the package provides the patatune module that defines an optimization algorithm: MOPSO. PATATUNE relies on a few helper classes to handle configuration and the objective functions. To use this module in your Python projects:

  1. Import the required modules:

    import patatune
    
  2. Define the objective function to be optimized. i.e.:

    def f1(x):
        return 4 * x[0]**2 + 4 * x[1]**2
    
    
    def f2(x):
        return (x[0] - 5)**2 + (x[1] - 5)**2
    
    objectives = patatune.ElementWiseObjective([f1, f2])
    
  3. Define the boundaries of the parameters:

    lb = [0.0, 0.0]
    ub = [5.0, 3.0]
    
  4. Create the MOPSO object with the configuration of the algorithm

    mopso = patatune.MOPSO( objectives,
                            lower_bounds=lb, upper_bounds=ub,
                            num_particles=50,
                            inertia_weight=0.4, cognitive_coefficient=1.5, social_coefficient=2)
    
  5. Run the optimization algorithm

    pareto = mopso.optimize(num_iterations = 100)
    

The output will be the archive of optimal solutions found by the algorithm after 100 iterations.

The output is a Python list containing Particle objects (instances of patatune.mopso.particle.Particle). You can easily extract a compact representation from the returned list. For example:

for p in pareto:
    print("position:", p.position, "fitness:", p.fitness)

Example printed output:

id: 0  position: [1.8 1.6] fitness: [ 23.5 21.6]
id: 49 position: [0.0 0.0] fitness: [ 0.   50. ]
id: 18 position: [1.0 1.0] fitness: [ 8.3  31.7]
id: 29 position: [5.0 3.0] fitness: [ 136. 4.  ]
id: 16 position: [0.0 0.0] fitness: [ 0.   50. ]
...

Contributing

Contributions are welcome. If you want to contribute, please follow the Contribution guidelines.

License

PATATUNE is distributed under the MPL 2.0 License. Feel free to use, modify, and distribute the code following the terms of the license.

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

patatune-1.0.2.tar.gz (50.8 kB view details)

Uploaded Source

Built Distribution

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

patatune-1.0.2-py3-none-any.whl (26.1 kB view details)

Uploaded Python 3

File details

Details for the file patatune-1.0.2.tar.gz.

File metadata

  • Download URL: patatune-1.0.2.tar.gz
  • Upload date:
  • Size: 50.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.14

File hashes

Hashes for patatune-1.0.2.tar.gz
Algorithm Hash digest
SHA256 51b95f6e3b2c2e450d384ea9c909002fcbd46909d41b6e8fe012dba450443bd5
MD5 5ac3b5dcacb69f856043c556232a2d93
BLAKE2b-256 1e969ceb83d787f72c25511cacedddb4a6bb7ab0f9f4c2ddb10c0fc3255ff891

See more details on using hashes here.

File details

Details for the file patatune-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: patatune-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.14

File hashes

Hashes for patatune-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 bb6b85bc56e24f6b723f8a8ca4fc892cfb55de7e279d8a178ca80f522daffaff
MD5 efea6315463b5362f1e12787972285b3
BLAKE2b-256 ffd0bbe2d4c21f48e98e12ba3e65927ec5b07f2002a8c82f22c32ef04f3e8020

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