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 29a28cf commit 446c0ceCopy full SHA for 446c0ce
tests/test_lando.py
@@ -254,7 +254,7 @@ def test_online_1():
254
lando_online = LANDO(online=True, **lando_params)
255
lando_online.fit(X, Y)
256
257
- assert relative_error(lando_online.f(X), lando.f(X)) < 1e-6
+ assert relative_error(lando_online.f(X), lando.f(X)) < 1e-5
258
259
260
def test_online_2():
@@ -270,7 +270,7 @@ def test_online_2():
270
lando_online.fit(X[:, :batch_split], Y[:, :batch_split])
271
lando_online.update(X[:, batch_split:], Y[:, batch_split:])
272
273
274
275
276
def test_online_3():
0 commit comments