-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17e99cf
commit fe07a75
Showing
17 changed files
with
8,518 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
iters: 10 | ||
|
||
optimiser: botorch | ||
|
||
|
||
parameters: | ||
a: [0, -4, 4] | ||
b: [0, -4, 4] | ||
c: [0, -4, 4] | ||
|
||
|
||
|
||
objective: | ||
name: design | ||
solver: | ||
name: curve | ||
cases: | ||
'case_1': | ||
expression: abs(<a> * exp(x) + <b> * x**2 + <c> * sin(x)) | ||
parametric: x | ||
bounds: [-2, 2] | ||
points: 100 | ||
targets: | ||
'minimum_value': | ||
quantity: max | ||
prediction: ['case_1'] | ||
negate: False | ||
'maximum_area': | ||
quantity: integral | ||
prediction: ['case_1'] | ||
negate: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
## sample_curve_design example | ||
|
||
A simple design objective example is included to demonstrate how to use `piglot` in design problems. | ||
|
||
In this problem, we aim to minimise the minimum value and maximimise the area below a nonlinear function given by the expression $f(x) = |a \exp(x) + bx^2+c\sin(x)|$. | ||
|
||
In this case, there is no reference response, and several values of the parameters `a`, `b` and `c` are evaluated for the target objectives. | ||
|
||
We run 10 iterations using the `botorch` optimiser (our interface for Bayesian optimisation), and set the parameters for optimisation (`a`, `b` and `c`) with bounds `[0,4]` and initial value 1. | ||
The notation `<a>`, `<b>` and `<c>` indicates that these parameters should be optimised. | ||
We also define a parameterisation using the variable $x$, where we sample the function between `[-2,2]` with 100 points. | ||
|
||
### Using configuration files | ||
The configuration file (`examples/sample_curve_design/config.yaml`) for this example is: | ||
```yaml | ||
iters: 10 | ||
|
||
optimiser: botorch | ||
|
||
parameters: | ||
a: [0, -4, 4] | ||
b: [0, -4, 4] | ||
c: [0, -4, 4] | ||
|
||
objective: | ||
name: design | ||
solver: | ||
name: curve | ||
cases: | ||
'case_1': | ||
expression: abs(<a> * exp(x) + <b> * x**2 + <c> * sin(x)) | ||
parametric: x | ||
bounds: [-2, 2] | ||
points: 100 | ||
targets: | ||
'minimum_value': | ||
quantity: max | ||
prediction: ['case_1'] | ||
negate: False | ||
'maximum_area': | ||
quantity: integral | ||
prediction: ['case_1'] | ||
negate: True | ||
``` | ||
The generated response with the label `case_1` is optimised having two target objectives: (i) minimisation of the minimum function value `minimum_value`, and (ii) maximization of the area/integral below the function `maximum_area`. | ||
|
||
To run this example, open a terminal inside the `piglot` repository, enter the `examples/sample_curve_design` directory and run piglot with the given configuration file | ||
```bash | ||
cd examples/sample_curve_design | ||
piglot config.yaml | ||
``` | ||
You should see an output similar to | ||
``` | ||
BoTorch: 100%|███████████████████████████████████████| 10/10 [00:00<00:00, 10.92it/s, Loss: -4.3239e+00] | ||
Completed 10 iterations in 0.91609s | ||
Best loss: -4.32393814e+00 | ||
Best parameters | ||
- a: -2.433969 | ||
- b: -4.000000 | ||
- c: 4.000000 | ||
``` | ||
In addition to these outputs, `piglot` creates an output directory, with the same name of the configuration file (minus the extension), where it stores the optimisation data. | ||
To visualise the optimisation results, use the `piglot-plot` utility. | ||
In the same directory, run (this may take some time) | ||
```bash | ||
piglot-plot animation config.yaml | ||
``` | ||
This generates an animation for all the function evaluations that have been made throughout the optimisation procedure for the two target objectives. | ||
You can find the `.gif` file(s) inside the output directory, which should give something like (for the `minimum_value` target): | ||
![Best case plot](../../docs/source/design_example/animation.gif) | ||
|
||
Now, try running | ||
```bash | ||
piglot-plot parameters config.yaml | ||
``` | ||
This will plot the evaluated parameters during the optimisation procedure: | ||
![Best case plot](../../docs/source/design_example/parameters.svg) | ||
|
||
To see the convergence history of the best loss function value, run | ||
```bash | ||
piglot-plot history config.yaml --best | ||
``` | ||
which will generate: | ||
![Best case plot](../../docs/source/design_example/loss.svg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
## sample_curve_fitting example | ||
|
||
A simple analytical curve fitting problem is included to demonstrate how to use `piglot`. | ||
In this case, we aim to fit a quadratic expression of the type $f(x) = a x^2$, using as a reference, a numerically generated reference from the expression $f(x) = 2 x^2$ (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). | ||
|
||
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. | ||
|
||
### Using configuration files | ||
The configuration file (`examples/sample_curve_fitting/config.yaml`) for this example is: | ||
```yaml | ||
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'] | ||
``` | ||
The generated response with the label `case_1` is compared with our reference response, 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 | ||
```bash | ||
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 of the configuration file (minus the extension), where it stores the optimisation data. | ||
To visualise the optimisation results, use the `piglot-plot` utility. | ||
In the same directory, run | ||
```bash | ||
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](../../docs/source/simple_example/best.svg) | ||
|
||
Now, try running (this may take some time) | ||
```bash | ||
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: | ||
![Best case plot](../../docs/source/simple_example/animation.gif) | ||
|
||
|
||
### Using Python scripts | ||
|
||
Another way of using `piglot` is via its package and Python modules. | ||
This approach may offer increase 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](#using-configuration-files) is provided in `examples/sample_curve_fitting/config.py`, given by: | ||
```python | ||
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 | ||
```bash | ||
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] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
iters: 10 | ||
|
||
optimiser: botorch | ||
|
||
parameters: | ||
a: [1, 0, 4] | ||
|
||
objective: | ||
name: fitting | ||
composite: True | ||
solver: | ||
name: curve | ||
cases: | ||
'case_1': | ||
expression: <a> * x ** 2 | ||
parametric: x | ||
bounds: [-5, 5] | ||
points: 100 | ||
references: | ||
'reference_curve.txt': | ||
prediction: ['case_1'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
## sample_curve_fitting_composite example | ||
|
||
A simple analytical curve fitting problem using a composite strategy is included to demonstrate how to use `piglot` in the composite setting. | ||
In this case, we aim to fit a quadratic expression of the type $f(x) = a x^2$, using as a reference, a numerically generated reference from the expression $f(x) = 2 x^2$ (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). | ||
|
||
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. | ||
|
||
The particularity of this example is that a composite strategy is used to fit the response. | ||
The advantages of this composite Bayesian optimisation are demonstrated in [Coelho et al.]([docs/source/simple_example/best.svg](https://dx.doi.org/10.2139/ssrn.4674421)) and are two-fold: (i) more accurate posteriors for the loss function and (ii) reduced loss of information during the computation of the reduction function. | ||
|
||
In short, in the composite setting the loss function $\mathcal{L}\left(\bm{\theta}\right)$ is written as | ||
$ | ||
\mathcal{L}\left(\bm{\theta}\right) | ||
= | ||
\hat{\mathcal{L}}\left(\bm{e}\left(\bm{\theta}\right)\right) | ||
= | ||
\dfrac{1}{N} | ||
\sum_{i=1}^{N} | ||
\left[e_i\left(\bm{\theta}\right)\right]^2, | ||
$ | ||
where $\bm{e}$ is a vector containing the pointwise errors at every reference point, $\hat{\mathcal{L}}\left(\bullet\right)$ is the scalar reduction function applied (NMSE in this case) and $N$ is the number of reference points. | ||
Thus, the problem can be stated as the minimisation of a composite function $\hat{\mathcal{L}}\left(\bm{e}\left(\bm{\theta}\right)\right)$, where $\hat{\mathcal{L}}\left(\bullet\right)$ is known and $\bm{e}\left(\bm{\theta}\right)$ is unknown. | ||
|
||
Consider the minimisation of $\mathcal{L}\left(\bm{\theta}\right) = \hat{\mathcal{L}}\left(\bm{e}\left(\bm{\theta}\right)\right)$. | ||
Within this setting, we start by replacing the single-output Gaussian Process on the loss $\mathcal{L}\left(\bm{\theta}\right)$ with a multi-output Gaussian Process for the error of each reference point $e_i$, that is, | ||
$ | ||
e_i\left(\bm{\theta}\right) | ||
\sim | ||
\mathcal{GP} | ||
\left( | ||
\mu_i\left(\bm{\theta}\right), | ||
k_i\left(\bm{\theta},\bm{\theta}'\right) | ||
\right). | ||
$ | ||
Naturally, this requires feeding the optimiser with the entire response instead of a single scalar value. | ||
At this stage, each GP is assumed independent and the correlations between the outputs are not considered; that is, each value $e_i$ is assumed as independent and uniquely defined by the set of parameters $\bm{\theta}$. | ||
|
||
The configuration file (`examples/sample_curve_fitting_composite/config.yaml`) for this example is: | ||
```yaml | ||
iters: 10 | ||
|
||
optimiser: botorch | ||
|
||
parameters: | ||
a: [1, 0, 4] | ||
|
||
objective: | ||
name: fitting | ||
composite: True | ||
solver: | ||
name: curve | ||
cases: | ||
'case_1': | ||
expression: <a> * x ** 2 | ||
parametric: x | ||
bounds: [-5, 5] | ||
points: 100 | ||
references: | ||
'reference_curve.txt': | ||
prediction: ['case_1'] | ||
``` | ||
The composite strategy is activated by setting ```composite: True```. | ||
|
||
To run this example, open a terminal inside the `piglot` repository, enter the `examples/sample_curve_fitting_composite` directory and run piglot with the given configuration file | ||
```bash | ||
cd examples/sample_curve_fitting_composite | ||
piglot config.yaml | ||
``` | ||
You should see an output similar to | ||
``` | ||
BoTorch: 100%|████████████████████████████████████████| 10/10 [00:01<00:00, 7.94it/s, Loss: 5.6009e-08] | ||
Completed 10 iterations in 1s | ||
Best loss: 5.60089334e-08 | ||
Best parameters | ||
- a: 1.999685 | ||
``` | ||
It is observed that 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}$. | ||
As this example is quite simple, there is no great advantage of using the composite strategy, as the simple Bayesian optimisation is already able of finding accurate solutions within few function evaluations. | ||
To visualise the optimisation results, use the `piglot-plot` utility. | ||
In the same directory, run for instance | ||
```bash | ||
piglot-plot best config.yaml | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-4.0 32.0 | ||
-2.4 11.52 | ||
-0.7999999999999998 1.2799999999999994 | ||
0.8000000000000007 1.2800000000000022 | ||
2.4000000000000004 11.520000000000003 | ||
4.0 32.0 |
Oops, something went wrong.