Skip to main content

A package for the optimisation of numerical responses

Project description

piglot logo

DOI Unit and integration testing PyPI - Version GitHub License CodeFactor Grade codecov ReadTheDocs

A package for the optimisation of numerical responses.

Introduction

Welcome to piglot, a Python tool taylored for the automated optimisation of responses from numerical solvers. We aim to provide a simple and user-friendly interface that is also easily extendable, allowing integration with other solvers within the community. Whether you're working on structural analysis, material modelling, fluid dynamics, control systems or astrophysics (to name a few) using, for instance, finite element analysis, spectral methods or Monte Carlo methods, piglot provides a versatile solution for solving inverse problems. The primary emphasis is on derivative-free optimisation, ensuring compatibility with black-box solvers in scenarios where gradient information is not available, and cases where the function evaluations may be noisy. We highlight:

  • Integration with solvers: We provide an extensible interface for coupling with physics solvers. As long as your solver can return a time-response for the fields you are interested, you can optimise it with piglot.
  • Optimisation algorithms: Off the shelf, there are several optimisers included in the package. Among them, we highlight our fully-fledged Bayesian optimisation (based on BoTorch) that supports optimising stochastic and composite objectives and is highly customisable. Additional methods can also be easily implemented within piglot.
  • Visualisation tools: You can use the built-in tool piglot-plot to visualise the results of the optimisation. There are native plotting utilities for the optimised responses, the parameter history, objective history and, for supported solvers, live plotting of the currently running case. Also, an animation of the optimisation process can be exported.

Feel free to explore, contribute, and optimise with piglot! We recommend starting by reading the Getting started section, and then checking the latest documentation for additional details. You can use our discussions page for help and our issue tracker for reporting problems and suggestions. If you use this tool in your work, we encourage to open a PR to add it to our list of papers.

Getting started

We provide some examples to get you started with piglot. There are two modes of operation available: running using the given piglot and piglot-plot tools and configuration files, or building the optimisation problem in a Python script.

Using configuration files

We use YAML configuration files to specify the optimisation problem to solve. This is the simplest form of using piglot and is the recommended approach unless you have a strong motive to use Python scripts (described here). A simple analytical curve fitting problem is included to showcase how to use configuration files.

To keep things simple, in this case, we fit a quadratic expression of the type $f(x) = a x^2$. Note that this curve is generally obtained from a physics-based solver when solving an inverse problem. As a reference, a numerically generated reference from the expression $f(x) = 2 x^2$ is used (provided in the examples/sample_curve_fitting/reference_curve.txt file). We want to find the value for $a$ that better fits our reference (it should be 2). The configuration file for this example is:

iters: 10

optimiser: botorch

parameters:
  a: [1, 0, 4]

objective:
  name: fitting
  solver:
    name: curve
    cases:
      'case_1':
        expression: <a> * x ** 2
        parametric: x
        bounds: [-5, 5]
        points: 100
  references:
    'reference_curve.txt':
      prediction: ['case_1']

You can find this file in examples/sample_curve_fitting/config.yaml We run 10 iterations using the botorch optimiser (our interface for Bayesian optimisation), and set the parameter a for optimisation with bounds [0,4] and initial value 1. Our optimisation objective is the fitting of an analytical curve, with the expression <a> * x ** 2. The notation <a> indicates that this parameter should be optimised. We also define a parameterisation using the variable $x$, where we sample the function between [-5,5] with 100 points. Finally, we compare this generated response (with the label case_1) with our reference, given from the file reference_curve.txt

To run this example, open a terminal inside the piglot repository, enter the examples/sample_curve_fitting directory and run piglot with the given configuration file

cd examples/sample_curve_fitting
piglot config.yaml

You should see an output similar to

BoTorch: 100%|██████████████████████████████████████████████████████| 10/10 [00:00<00:00, 17.66it/s, Loss: 8.8505e-08]
Completed 10 iterations in 0.56614s
Best loss:  8.85050592e-08
Best parameters
- a:     1.999508

As you can see, piglot correctly identifies the a parameter close to the expected value of 2, and the error of the fitting is in the order of $10^{-8}$. In addition to these outputs, piglot creates an output directory, with the same name as the configuration file (minus the extension), where it stores the optimisation data.

Visualising results with piglot-plot

When using configuration files, the optimisation results can be quickly visualised with our piglot-plot utility. With this tool, you can plot results for:

  • response for a given case;
  • response for best-observed objective;
  • currently running response (for supported solvers and objectives);
  • objective history;
  • parameter history;
  • cumulative regret;
  • animation with the evaluated responses;
  • Gaussian process regression for 1D optimisation problems.

Here we provide a brief overview over some of its features, but you can check out a more detailed description in our post-processing example. In the same directory, run

piglot-plot best config.yaml

Which will display the best-observed value for the optimisation problem. You should see the following output in the terminal

Best run:
Start Time /s    0.587397
Run Time /s      0.004439
a                1.999508
Name: 18, dtype: object
Hash: 2313718f75bc0445aa71df7d6d4e50ba82ad593d65f3762efdcbed01af338e30
Objective:  8.85050592e-08

The script will also plot the best observed response, and its comparison with the reference response: Best case plot If you wish to directly save the figure without showing the GUI, you can also run

piglot-plot best config.yaml --save_fig fitting.png

which will save the image to the fitting.png file.

If you wish to see the objective convergence history, you can also use

piglot-plot history config.yaml --best --log

where the optional arguments --best and --log indicate to plot the best-observed objective in a logarithmic scale, which gives the following output: History plot

Now, try running (this may take some time)

piglot-plot animation config.yaml

This generates an animation for all the function evaluations that have been made throughout the optimisation procedure. You can find the .gif file(s) inside the output directory, which should give something like: Animation

Using Python scripts

Another way of using piglot is via its package and Python modules. This approach may offer increased flexibility in the setup of the optimisation problem, at the cost of increased complexity and verbosity. A sample script equivalent to the configuration file for the problem described in the previous section is provided in examples/sample_curve_fitting/config.py, given by:

import os
import shutil
from piglot.parameter import ParameterSet
from piglot.solver.solver import Case
from piglot.solver.curve.solver import CurveSolver
from piglot.solver.curve.fields import CurveInputData, Curve
from piglot.objectives.fitting import Reference, MSE
from piglot.objectives.fitting import FittingObjective, FittingSolver
from piglot.optimisers.botorch.bayes import BayesianBoTorch

# Set up output and temporary directories
output_dir = 'config'
tmp_dir = os.path.join(output_dir, 'tmp')
if os.path.isdir(output_dir):
    shutil.rmtree(output_dir)
os.makedirs(output_dir, exist_ok=True)

# Set up optimisation parameters
parameters = ParameterSet()
parameters.add('a', 1.0, 0.0, 4.0)

# Set up the reference
reference = Reference('reference_curve.txt', ['case_1'], output_dir)

# Set up the solver to use
input_data = CurveInputData('case_1', '<a> * x ** 2', 'x', (-5.0, 5.0), 100)
case_1 = Case(input_data, {'case_1': Curve()})
solver = CurveSolver([case_1], parameters, output_dir, tmp_dir=tmp_dir)

# Set up the fitting objective
references = {reference: ['case_1']}
fitting_solver = FittingSolver(solver, references)
objective = FittingObjective(parameters, fitting_solver, output_dir, MSE())

# Set up the optimiser and run optimisation
optimiser = BayesianBoTorch(objective)
value, params = optimiser.optimise(10, parameters, output_dir)
print(f"Optimal value: {value}")
print(f"Optimal parameters: {params}")

Run with

python config.py

Example output

BoTorch: 100%|██████████████████████████████████████████████████████| 10/10 [00:00<00:00, 16.75it/s, Loss: 8.9167e-08]
Completed 10 iterations in 0.59692s
Best loss:  8.91673999e-08
Best parameters
- a:     1.999506
Optimal value: 8.916739991036405e-08
Optimal parameters: [1.99950592]

Installation

You can install piglot by only installing the main scripts or as a standard Python package. If you only intend to use the piglot and piglot-plot binaries, we strongly recommend the first option, as it avoids having to manage the dependencies in your Python environment. However, if you wish to use the tools in the piglot package, you may have to resort to the second option. Currently, we require Python 3.9 onwards.

Option 1: Install binaries

This option is recommended for end-users that only need to interact with the provided piglot and piglot-plot scripts. We use pipx to install the package in an isolated environment with the required dependencies (we recommend reading the pipx documentation to check the advantages of using this approach).

  1. Install pipx in your system using the instructions here;
  2. In your favourite terminal, run: pipx install piglot;
  3. Confirm the package is correctly installed by calling the piglot and piglot-plot executables.

Option 2: Install package

We recommend this option for users aiming to use the piglot package directly. Note that this option also provides the piglot and piglot-plot scripts, but requires manual handling of the installation environment.

  1. In your favourite terminal, run: pip install piglot;
  2. Confirm the package is correctly installed by calling the piglot and piglot-plot executables.

Installing additional optimisers

We also support some optional external optimisers, which are not automatically installed along with piglot to reduce the number of dependencies and the installation cost. You can either install them along with piglot, or manually using your package manager. Their detection is done at runtime and, if not installed, an error will be raised. Currently, the following optional optimisers are supported:

  • lipo - LIPO optimiser
  • geneticalgorithm - Genetic algorithm
  • pyswarms - Particle swarm optimiser

These can be installed directly from PyPI (with the package names above). If you wish to install piglot with one of these optimisers (which may be required when using a pipx install), you can run the following commands:

  • pip install piglot[lipo] for the LIPO optimiser
  • pip install piglot[genetic] for the Genetic algorithm
  • pip install piglot[pso] for the Particle swarm optimiser optimiser

To simultaneously install more than one optimiser, for instance, the LIPO and the Particle swarm optimisers, run pip install piglot[lipo,pso]. If you wish to install all optimisers at once, you can run pip install piglot[full].

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

piglot-0.4.1.tar.gz (75.5 kB view details)

Uploaded Source

Built Distribution

piglot-0.4.1-py3-none-any.whl (93.5 kB view details)

Uploaded Python 3

File details

Details for the file piglot-0.4.1.tar.gz.

File metadata

  • Download URL: piglot-0.4.1.tar.gz
  • Upload date:
  • Size: 75.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for piglot-0.4.1.tar.gz
Algorithm Hash digest
SHA256 b80157927e223a90921093f7b7138ad381da82135cb2283a8ff545686c4d5b9b
MD5 cd154c818eb5133f83ca41193086e574
BLAKE2b-256 f6649ec264e03faa02aaf24eb91e4b54c0783f55828a16cdd630e5b67b927f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for piglot-0.4.1.tar.gz:

Publisher: release.yaml on CM2S/piglot

Attestations:

File details

Details for the file piglot-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: piglot-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 93.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for piglot-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 437a381277755b5489cd779226120dabe5ecc1145384f4caa16ccaebbfe7f062
MD5 d02549ac4a38df0430002d62d5e52f2c
BLAKE2b-256 7c2df9c6499d69989436c992e9b9937ac35de8560d67d218b518f8a3ca80ce37

See more details on using hashes here.

Provenance

The following attestation bundles were made for piglot-0.4.1-py3-none-any.whl:

Publisher: release.yaml on CM2S/piglot

Attestations:

Supported by

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