-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anisotropic kernel for the multi-fidelity co-Kriging model (MFCK) #692
Conversation
Please update title and description to reflect the PR content. |
Why did you modified the default value for cobyla ? |
It's not necessary to have those values. I'll update the PR with the default values of Cobyla |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After the commented code removal, I will merge if you have nothing to add.
smt/applications/mfck.py
Outdated
means.append(self.y_std * np.dot(beta1.T, alpha1) + self.y_mean) | ||
covariances.append(k_xx - np.dot(beta1.T, beta1)) | ||
|
||
# k_XX_inv = np.linalg.inv(k_XX + self.options["nugget"]*np.eye(k_XX.shape[0])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this commented code.
Adding anisotropic kernel computation for the multi-fidelity co-Kriging approach proposed (MFCK) to deal with non-nested DoEs—additional modification adding a regularization parameter in the Negative Marginal Likelihood.