Skip to content
Snippets Groups Projects
Commit b89c762d authored by Vincent Dubourg's avatar Vincent Dubourg
Browse files

Bugged example after modification. Now correct!

parent dbfd17ba
Branches
Tags
No related merge requests found
...@@ -32,7 +32,7 @@ Y = f(X) ...@@ -32,7 +32,7 @@ Y = f(X)
x = np.linspace(0,10,1000) x = np.linspace(0,10,1000)
# Instanciate a Gaussian Process model # Instanciate a Gaussian Process model
gp = GaussianProcess(corr=corrs[k], theta0=1e-2, thetaL=1e-4, thetaU=1e-1, random_start=100) gp = GaussianProcess(corr=corrcubic, theta0=1e-2, thetaL=1e-4, thetaU=1e-1, random_start=100)
# Fit to data using Maximum Likelihood Estimation of the parameters # Fit to data using Maximum Likelihood Estimation of the parameters
gp.fit(X, Y) gp.fit(X, Y)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment