We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326b3d9 commit 8906d52Copy full SHA for 8906d52
test/GPR/runtests.jl
@@ -89,11 +89,11 @@ thrsh = gprw.thrsh
89
90
ytrue = xmesh.^2
91
ypred = GPR.predict(gprw, xmesh)
92
- @test isapprox(ytrue, ypred, atol=1e-5, norm=inf_norm)
+ @test isapprox(ytrue, ypred, atol=1e-4, norm=inf_norm)
93
94
mesh_, mean_, std_ = GPR.mmstd(gprw, mesh_n=101)
95
@test isapprox(mesh_, xmesh, atol=1e-8, norm=inf_norm)
96
- @test isapprox(ytrue, mean_, atol=1e-5, norm=inf_norm)
+ @test isapprox(ypred, mean_, atol=1e-8, norm=inf_norm)
97
98
mean, std = GPR.predict(gprw, xmesh, return_std = true)
99
@test isapprox(mean, mean_, atol=1e-8, norm=inf_norm)
0 commit comments