Skip to content

Commit

Permalink
reduce memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
stefdoerr committed Jan 24, 2025
1 parent 7a574ab commit 38a445c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_datamodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def test_dataloader_get(tmpdir):
def test_datamodule_standardize(energy, forces, has_atomref, tmpdir):
args = load_example_args("graph-network")
args["standardize"] = True
args["train_size"] = 800
args["val_size"] = 100
args["test_size"] = 100
args["train_size"] = 80
args["val_size"] = 10
args["test_size"] = 10
args["log_dir"] = tmpdir

dataset = DummyDataset(energy=energy, forces=forces, has_atomref=has_atomref)
Expand Down

0 comments on commit 38a445c

Please sign in to comment.