Multi-Generation Gaussian Process Optimization (MGGPO)¶
MGGPOGenerator
¶
Bases: MultiObjectiveBayesianGenerator
Multi-Generation Gaussian Process Optimization (MGGPO) generator. Combines multi-objective bayesian optimization with genetic algorithms to do highly-parallelized multi-objective optimization.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
The name of the generator. |
population_size |
int
|
The population size for the genetic algorithm. |
supports_batch_generation |
bool
|
Indicates if the generator supports batch candidate generation. |
ga_generator |
Optional[CNSGAGenerator]
|
The CNSGA generator used to generate candidates. |
Methods:
| Name | Description |
|---|---|
propose_candidates |
Propose candidates for Bayesian Optimization. |
add_data |
Add new data to the generator. |
get_acquisition |
Get the acquisition function for Bayesian Optimization. |
_get_objective |
Create the multi-objective Bayesian optimization objective. |
_get_acquisition |
Create the Log Expected Hypervolume Improvement acquisition function. |
Source code in xopt/generators/bayesian/mggpo.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | |
model_input_names
property
¶
variable names corresponding to trained model
add_data(new_data)
¶
Add new data to the generator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
new_data
|
DataFrame
|
The new data to be added. |
required |
Source code in xopt/generators/bayesian/mggpo.py
105 106 107 108 109 110 111 112 113 114 115 | |
generate(n_candidates)
¶
Generate candidates using Bayesian Optimization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_candidates
|
int
|
The number of candidates to generate in each optimization step. |
required |
Returns:
| Type | Description |
|---|---|
List[Dict]
|
A list of dictionaries containing the generated candidates. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the number of candidates is greater than 1, and the generator does not support batch candidate generation. |
RuntimeError
|
If no data is contained in the generator, the 'add_data' method should be called to add data before generating candidates. |
Notes
This method generates candidates for Bayesian Optimization based on the provided number of candidates. It updates the internal model with the current data and calculates the candidates by optimizing the acquisition function. The method returns the generated candidates in the form of a list of dictionaries.
Source code in xopt/generators/bayesian/bayesian_generator.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | |
get_acquisition(model)
¶
Get the acquisition function for Bayesian Optimization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Module
|
The model used for Bayesian Optimization. |
required |
Returns:
| Type | Description |
|---|---|
Callable
|
The acquisition function. |
Source code in xopt/generators/bayesian/mggpo.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
get_input_data(data)
¶
Convert input data to a torch tensor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
The input data in the form of a pandas DataFrame. |
required |
Returns:
| Type | Description |
|---|---|
Tensor
|
A torch tensor containing the input data. |
Notes
This method takes a pandas DataFrame as input data and converts it into a torch tensor. It specifically selects columns corresponding to the model's input names (variables), and the resulting tensor is configured with the data type and device settings from the generator.
Source code in xopt/generators/bayesian/bayesian_generator.py
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 | |
get_optimum()
¶
select the best point(s) given by the model using the Posterior mean
Source code in xopt/generators/bayesian/bayesian_generator.py
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 | |
get_pareto_front_and_hypervolume()
¶
Get the pareto front and hypervolume of the current data.
Returns:
| Name | Type | Description |
|---|---|---|
pareto_front_variables |
Tensor
|
The pareto front variable data. |
pareto_front_objectives |
Tensor
|
The pareto front objective data. |
pareto_mask |
Tensor
|
A mask indicating which points are part of the pareto front. |
hv |
float
|
The hypervolume of the pareto front. |
Source code in xopt/generators/bayesian/bayesian_generator.py
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 | |
get_training_data(data)
¶
Get training data used to train the GP model.
If a turbo controller is specified with the flag restrict_model_data this
will return a subset of data that is inside the trust region.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
The data in the form of a pandas DataFrame. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
data |
DataFrame
|
A subset of data used to train the model form of a pandas DataFrame. |
Source code in xopt/generators/bayesian/bayesian_generator.py
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 | |
model_dump(*args, **kwargs)
¶
overwrite model dump to remove faux class attrs
Source code in xopt/generator.py
182 183 184 185 186 187 188 189 190 | |
propose_candidates(model, n_candidates=1)
¶
Propose candidates for Bayesian Optimization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Module
|
The model used for Bayesian Optimization. |
required |
n_candidates
|
int
|
The number of candidates to propose, by default 1. |
1
|
Returns:
| Type | Description |
|---|---|
Tensor
|
The proposed candidates. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If not enough unique solutions are generated by the GA. |
Source code in xopt/generators/bayesian/mggpo.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | |
train_model(data=None, update_internal=True)
¶
Train a Bayesian model for Bayesian Optimization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
The data to be used for training the model. If not provided, the internal data of the generator is used. |
None
|
update_internal
|
bool
|
Flag to indicate whether to update the internal model of the generator with the trained model (default is True). |
True
|
Returns:
| Type | Description |
|---|---|
Module
|
The trained Bayesian model. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If no data is available to build the model. |
Notes
This method trains a Bayesian model using the provided data or the internal data of the generator. It updates the internal model with the trained model if the 'update_internal' flag is set to True.
Source code in xopt/generators/bayesian/bayesian_generator.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 | |
update_pareto_front_history()
¶
Update the historical pareto front statistics in the generator.
For each row of data in self.data, compute the pareto front stats
(hypervolume, number of non-dominated points) if there is no
corresponding entry exists in the self.pareto_front_history DataFrame.
Source code in xopt/generators/bayesian/bayesian_generator.py
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 | |
validate_turbo_controller(value, info)
classmethod
¶
note default behavior is no use of turbo
Source code in xopt/generators/bayesian/bayesian_generator.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |
visualize_model(**kwargs)
¶
Display GP model predictions for the selected output(s).
The GP models are displayed with respect to the named variables. If None are given, the list of variables in vocs is used. Feasible samples are indicated with a filled orange "o", infeasible samples with a hollow red "o". Feasibility is calculated with respect to all constraints unless the selected output is a constraint itself, in which case only that one is considered.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
Supported keyword arguments: - output_names : List[str] Outputs for which the GP models are displayed. Defaults to all outputs in vocs. - variable_names : List[str] The variables with respect to which the GP models are displayed (maximum of 2). Defaults to vocs.variable_names. - idx : int Index of the last sample to use. This also selects the point of reference in higher dimensions unless an explicit reference_point is given. - reference_point : dict Reference point determining the value of variables in vocs.variable_names, but not in variable_names (slice plots in higher dimensions). Defaults to last used sample. - show_samples : bool, optional Whether samples are shown. - show_prior_mean : bool, optional Whether the prior mean is shown. - show_feasibility : bool, optional Whether the feasibility region is shown. - show_acquisition : bool, optional Whether the acquisition function is computed and shown (only if acquisition function is not None). - n_grid : int, optional Number of grid points per dimension used to display the model predictions. - axes : Axes, optional Axes object used for plotting. - exponentiate : bool, optional Flag to exponentiate acquisition function before plotting. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
result |
tuple
|
The matplotlib figure and axes objects. |
Source code in xopt/generators/bayesian/bayesian_generator.py
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 | |
yaml(**kwargs)
¶
serialize first then dump to yaml string
Source code in xopt/pydantic.py
231 232 233 234 235 236 237 238 | |