Skip to content
Discussion options

You must be logged in to vote

Hi @RemDelaporteMathurin! Thank you for getting back to us, the notebook is really helpful.

The modelling approach combining PCA with GPs looks great. You could also try comparing RBF to the Matern kernel just in case you find you can get any performance improvement.

I found one bug in your code. For the calibration, you have:

bc = BayesianCalibration(
    em.model,
    ...
)

But this should be:

bc = BayesianCalibration(
    em,
    ...
)

In your notebook em is an instance of TransformedEmulator which wraps together the underlying GP (which makes predictions in the transformed 8 dimensional space) and the PCA transform (which transforms the 8D predictions back to the 50 dimensional data s…

Replies: 3 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@RemDelaporteMathurin
Comment options

@radka-j
Comment options

Answer selected by radka-j
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants