You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use exact GPs and the hyperparameter optimization keeps producing errors, such as AssertionError: isfinite(phi_c) && isfinite(dphi_c).
Consider this minimal example: N = 100 X = rand(3, N) y = sin.(X[1,:]) .* cos.(X[2,:]) .+ 2. .* X[3,:] kern = Matern(5/2,[0.0, 0.0, 0.0],0.0) + SE(0.0, 0.0) m = MeanZero() gp = GP(X,y,m,kern) optimize!(gp)
Am I doing something wrong, or is there an error?
Many greetings,
Marlon
The text was updated successfully, but these errors were encountered:
Dear all,
I am trying to use exact GPs and the hyperparameter optimization keeps producing errors, such as
AssertionError: isfinite(phi_c) && isfinite(dphi_c)
.Consider this minimal example:
N = 100
X = rand(3, N)
y = sin.(X[1,:]) .* cos.(X[2,:]) .+ 2. .* X[3,:]
kern = Matern(5/2,[0.0, 0.0, 0.0],0.0) + SE(0.0, 0.0)
m = MeanZero()
gp = GP(X,y,m,kern)
optimize!(gp)
Am I doing something wrong, or is there an error?
Many greetings,
Marlon
The text was updated successfully, but these errors were encountered: