gp_sep
GPsep
¶
Bases: BaseEstimator
, RegressorMixin
A class to represent a Gaussian Process with separable covariance.
Attributes:
Name | Type | Description |
---|---|---|
m |
Number of input dimensions. |
|
n |
Number of observations. |
|
X |
Input data matrix. |
|
y |
Output data vector. |
|
d |
Length-scale parameters. |
|
g |
Nugget parameter. |
|
K |
Covariance matrix. |
|
Ki |
Inverse of covariance matrix. |
|
Kiy |
Product of Ki and y. |
|
phi |
Scalar value from y^T Ki y calculation. |
|
dK |
Boolean flag for calculating derivatives. |
|
DK |
Matrix of derivatives. |
|
ldetK |
Log determinant of K. |
|
nlsep_method |
Method for likelihood computation. |
|
gradnlsep_method |
Method for gradient computation. |
|
n_restarts_optimizer |
Number of restarts for optimization. |
|
samp_size |
Sample size for distance calculations. |
|
maxit |
Maximum number of optimization iterations. |
|
verbosity |
Verbosity level. |
|
auto_optimize |
Whether to automatically optimize hyperparameters. |
|
max_points |
Maximum number of points for model building. |
|
seed |
Random seed for reproducibility. |
Source code in spotpython/gp/gp_sep.py
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 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 461 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 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 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 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 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 742 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 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 |
|
__init__(d=None, g=None, nlsep_method='inv', gradnlsep_method='inv', n_restarts_optimizer=9, samp_size=1000, maxit=100, verbosity=0, auto_optimize=True, max_points=None, seed=123)
¶
Initialize the GP model with data and hyperparameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
Input data matrix of shape (n, m). If pandas DataFrame, will be converted to numpy array. |
required |
y |
ndarray
|
Output data vector of length n. If pandas Series, will be converted to numpy array. |
required |
d |
ndarray
|
Length-scale parameters. |
None
|
g |
float
|
Nugget parameter. |
None
|
nlsep_method |
str
|
Method to use for likelihood optimization. Possible values are “inv” and “chol”. Default is “inv”. |
'inv'
|
gradnlsep_method |
str
|
Method to use for likelihood gradient optimization. Possible values are “inv”, “chol”, and “direct”. Default is “inv”. |
'inv'
|
n_restarts_optimizer |
int
|
Number of restarts for the optimizer. Default is 9. |
9
|
samp_size |
int
|
sub-sample size for getDs(), darg() if the number of rows in X is large. |
1000
|
maxit |
int
|
Maximum number of iterations for the optimizer. Default is 100. |
100
|
verbosity |
int
|
Verbosity level for optimization output. Default is 0. |
0
|
auto_optimize |
bool
|
Whether to automatically optimize hyperparameters using MLE. Default is True. |
True
|
max_points |
int
|
Maximum number of points to use for the model building. Default is None, which means all points are used. |
None
|
Source code in spotpython/gp/gp_sep.py
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 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 |
|
calc_ytKiy()
¶
Recalculate phi and related components from Ki and y.
Source code in spotpython/gp/gp_sep.py
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 |
|
fit(X, y, d=None, g=None, dK=True, auto_optimize=None, verbosity=0)
¶
Fit the GP model with training data and optionally auto-optimize hyperparameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
array-like of shape (n_samples, n_features) |
required |
y |
ndarray
|
array-like of shape (n_samples,) |
required |
d |
The length-scale parameters. If None, will be determined automatically. Defaults to None. |
None
|
|
g |
The nugget parameter. If None, will be determined automatically. Defaults to None. |
None
|
|
dK |
bool
|
Flag to indicate whether to calculate derivatives. Defaults to True. |
True
|
auto_optimize |
bool
|
Whether to automatically optimize hyperparameters using MLE. If None, uses the default value from the object. Defaults to None. |
None
|
verbosity |
Verbosity level for optimization output. Defaults to 0. |
0
|
Returns:
Name | Type | Description |
---|---|---|
GPsep |
GPsep
|
The fitted GPsep object. |
Raises:
Type | Description |
---|---|
ValueError
|
If X has no rows or if X and y dimensions mismatch. |
Source code in spotpython/gp/gp_sep.py
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 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 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 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 628 629 630 631 632 633 634 635 636 637 638 639 640 |
|
get_d()
¶
Access the separable lengthscale parameter of the GP.
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: The lengthscale parameter. |
Source code in spotpython/gp/gp_sep.py
805 806 807 808 809 810 811 812 813 814 |
|
get_g()
¶
Access the nugget parameter of the GP.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The nugget parameter. |
Source code in spotpython/gp/gp_sep.py
816 817 818 819 820 821 822 823 824 825 |
|
get_m()
¶
Access the input dimension m of the GP.
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The input dimension m. |
Source code in spotpython/gp/gp_sep.py
827 828 829 830 831 832 833 834 835 836 |
|
get_params(deep=True)
¶
Get parameters for this estimator.
This method is required for scikit-learn compatibility.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
deep |
If True, will return the parameters for this estimator and contained subobjects that are estimators. Defaults to True. |
True
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Parameter names mapped to their values. |
Source code in spotpython/gp/gp_sep.py
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 |
|
mleGPsep_optimize(tmin, tmax, ab, maxit, verb)
¶
Optimize the separable GP to use its MLE separable lengthscale and multiple nugget parameterization using the current data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tmin |
ndarray
|
Minimum bounds for the parameters. |
required |
tmax |
ndarray
|
Maximum bounds for the parameters. |
required |
ab |
ndarray
|
Prior parameters. Currently unused. |
required |
maxit |
int
|
Maximum number of iterations. |
required |
verb |
int
|
Verbosity level. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary containing the optimized parameters, number of iterations, convergence status, and message. |
Source code in spotpython/gp/gp_sep.py
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 |
|
predict(X, lite=False, nonug=False, return_full=False, return_std=False)
¶
Predict the Gaussian Process output at new input points.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
The predictive locations. |
required |
lite |
bool
|
Flag to indicate whether to compute only the diagonal of Sigma. Defaults to False. |
False
|
nonug |
bool
|
Flag to indicate whether to exclude nugget. Defaults to False. |
False
|
return_full |
Flag to indicate whether to return the full dictionary, which includes the mean, Sigma, df, and llik. Defaults to False. |
False
|
|
return_std |
Flag to indicate whether to return the standard deviation. Only applicable when return_full is False. Defaults to False. |
False
|
Returns:
Type | Description |
---|---|
float
|
Various formats based on arguments: |
float
|
|
float
|
|
float
|
|
Examples:
import numpy as np from spotpython.gp.gp_sep import newGPsep import matplotlib.pyplot as plt
Simple sine data¶
X = np.linspace(0, 2 * np.pi, 7).reshape(-1, 1) y = np.sin(X)
New GP fit¶
gpsep = newGPsep(X, y, d=2, g=0.000001)
Make predictions¶
XX = np.linspace(-1, 2 * np.pi + 1, 499).reshape(-1, 1) p = gpsep.predict(XX, lite=False)
Sample from the predictive distribution¶
N = 100 mean = p[“mean”] Sigma = p[“Sigma”] df = p[“df”]
Generate samples from the multivariate t-distribution¶
yy = np.random.multivariate_normal(mean, Sigma, N) yy = yy.T
Plot the results¶
plt.figure(figsize=(10, 6)) for i in range(N): plt.plot(XX, yy[:, i], color=”gray”, linewidth=0.5) plt.scatter(X, y, color=”black”, s=50, zorder=5) plt.xlabel(“x”) plt.ylabel(“f-hat(x)”) plt.title(“Predictive Distribution”) plt.show()
Source code in spotpython/gp/gp_sep.py
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 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 742 743 744 745 746 747 748 749 750 751 752 753 754 755 |
|
set_new_params(d, g)
¶
Change the parameterization of the GP without destroying and reallocating memory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d |
ndarray
|
The new length-scale parameters. |
required |
g |
float
|
The new nugget parameter. |
required |
Source code in spotpython/gp/gp_sep.py
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 |
|
set_params(**parameters)
¶
Set the parameters of this estimator.
This method is required for scikit-learn compatibility.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**parameters |
Estimator parameters as keyword arguments. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
self |
Estimator instance. |
Source code in spotpython/gp/gp_sep.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
|
crude_reset(theta, tmin, tmax, m)
¶
Check whether any elements of the parameter vector theta
lie below the
corresponding elements of the lower bound tmin
. If so, reset theta
to a new vector based on the weighted average of tmin
and tmax
,
leaving bounds unmodified except for cases where tmax
is negative.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
theta |
ndarray
|
The current parameter values. |
required |
tmin |
ndarray
|
The lower bounds for the parameters. |
required |
tmax |
ndarray
|
The upper bounds for the parameters (may be adjusted if negative). |
required |
m |
int
|
The dimensionality or number of parameters (used to adjust negative |
required |
Returns:
Type | Description |
---|---|
dict or None: A dictionary containing: - “theta” (np.ndarray): The reset parameter values. - “its” (int): Number of iterations (0, indicating immediate reset). - “msg” (str): Reason for the reset. - “conv” (int): Reset code (102). |
|
Returns None if no reset is needed. |
Source code in spotpython/gp/gp_sep.py
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 |
|
darg(d, X=None, samp_size=1000)
¶
Processes the ‘d’ dictionary/argument specifying length-scale priors, constraints, and whether MLE calculations should be used.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d |
Union[Dict, float]
|
Could be a dictionary, numeric, or None. |
required |
X |
ndarray
|
The input data matrix. |
None
|
samp_size |
int
|
The sub-sample size if the number of rows in X is large. |
1000
|
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
Updated ‘d’ with fields ‘start’, ‘min’, ‘max’, ‘mle’, ‘ab’, etc. |
Examples:
>>> from spotpython.gp.gp_sep import darg
>>> import numpy as np
>>> X = np.array([[1, 2], [3, 4], [5, 6]])
>>> d = 2.5
>>> result = darg(d=d, X=X, samp_size=10)
>>> print(result)
Source code in spotpython/gp/gp_sep.py
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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|
garg(g, y=None)
¶
Process the ‘g’ argument to set up proper starting values, ranges, and priors for the nugget parameter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
g |
Could be a dictionary, numeric, or None. If numeric, turn it into {“start”: g}. |
required | |
y |
ndarray
|
The response vector. |
None
|
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
Updated ‘g’ with fields ‘start’, ‘min’, ‘max’, ‘mle’, ‘ab’, etc. |
Source code in spotpython/gp/gp_sep.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
getDs(X, p=0.1, samp_size=1000)
¶
Calculate a rough starting, minimum, and maximum length-scale from the data X.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
The input data |
required |
p |
float
|
quantile for the distance distribution (default 0.1). |
0.1
|
samp_size |
int
|
sub-sample size if the number of rows in X is large. |
1000
|
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
with ‘start’ (the p-th quantile), ‘min’ (the minimum distance), ‘max’ (the maximum distance). |
Examples:
>>> from spotpython.gp.gp_sep import getDs
>>> import numpy as np
>>> X = np.array([[1, 2], [3, 4], [5, 6]])
>>> getDs(X, p=0.1, samp_size=10)
>>> print(result)
Source code in spotpython/gp/gp_sep.py
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 |
|
newGPsep(X, y, d=None, g=None, dK=True, optimize=True)
¶
Instantiate a new GPsep model with automatic hyperparameter optimization.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
The input data matrix of shape (n, m). |
required |
y |
ndarray
|
The output data vector of length n. |
required |
d |
optional
|
The length-scale parameters. If None, will be determined automatically. |
None
|
g |
optional
|
The nugget parameter. If None, will be determined automatically. |
None
|
dK |
bool
|
Flag to indicate whether to calculate derivatives. |
True
|
optimize |
bool
|
Whether to optimize hyperparameters after initialization. |
True
|
Returns:
Name | Type | Description |
---|---|---|
GPsep |
GPsep
|
The newly created and optimized GPsep object. |
Source code in spotpython/gp/gp_sep.py
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 |
|