Skip to content

Commit

Permalink
ENH: small change in test
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAuriau committed Oct 23, 2024
1 parent 9d1fc2e commit 93737da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/unit_tests/models/test_rumnet_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def test_paper_rumnet_errors():
tol=1e-5,
optimizer="adam",
lr=0.001,
epochs=2,
)
model.instantiate()

Expand All @@ -179,6 +180,7 @@ def test_paper_rumnet():
tol=1e-5,
optimizer="adam",
lr=0.001,
epochs=2,
)
model.instantiate()
nll_a = model.evaluate(dataset)
Expand Down Expand Up @@ -213,6 +215,7 @@ def test_cpu_rumnet():
tol=1e-5,
optimizer="adam",
lr=0.001,
epochs=2,
)
model.instantiate()
assert model.batch_predict(
Expand Down Expand Up @@ -251,6 +254,7 @@ def test_gpu_rumnet():
tol=1e-5,
optimizer="adam",
lr=0.001,
epochs=2,
)
model.instantiate()
assert model.batch_predict(
Expand Down

0 comments on commit 93737da

Please sign in to comment.