Skip to content
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

Adding L96 example #101

Merged
merged 14 commits into from
Feb 12, 2021
3 changes: 2 additions & 1 deletion examples/Cloudy/Cloudy_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ kern2 = Mat52Ard(len2, 0.0)
white = Noise(log(2.0))
GPkernel = kern1 + kern2 + white
# Get training points
u_tp, g_tp = Utilities.extract_GP_tp(ekiobj, N_iter)
#u_tp, g_tp = Utilities.extract_GP_tp(ekiobj, N_iter)
u_tp, g_tp = Utilities.get_training_points(ekiobj, N_iter)
normalized = true
gpobj = GaussianProcessEmulator.GaussianProcess(u_tp, g_tp, gppackage; GPkernel=GPkernel,
obs_noise_cov=Γy, normalized=normalized,
Expand Down
Loading