Skip to content

Commit 417955d

Browse files
committed
fix test
1 parent 5ba3db9 commit 417955d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def test_gradients(model_name):
250250
def test_ensemble():
251251
ckpts = [join(dirname(dirname(__file__)), "tests", "example.ckpt")] * 3
252252
model = load_model(ckpts[0])
253-
ensemble_model = load_model(ckpts)
253+
ensemble_model = load_model(ckpts, return_std=True)
254254
z, pos, batch = create_example_batch(n_atoms=5)
255255

256256
pred, deriv = model(z, pos, batch)

0 commit comments

Comments
 (0)