Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enforce seed. #138

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion alignn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Version number."""
__version__ = "2023.10.01"
__version__ = "2024.1.4"
7 changes: 7 additions & 0 deletions alignn/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from typing import Any, Dict, Union
import ignite
import torch
import random
from ignite.contrib.handlers import TensorboardLogger
from sklearn.metrics import mean_absolute_error

Expand Down Expand Up @@ -301,6 +302,12 @@ def train_dgl(
)

if config.model.name == "alignn_atomwise":
if config.random_seed is not None:
random.seed(config.random_seed)
np.random.seed(config.random_seed)
torch.manual_seed(config.random_seed)
torch.cuda.manual_seed_all(config.random_seed)
torch.backends.cudnn.deterministic = True

def get_batch_errors(dat=[]):
"""Get errors for samples."""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="alignn",
version="2023.10.01",
version="2024.1.4",
author="Kamal Choudhary, Brian DeCost",
author_email="[email protected]",
description="alignn",
Expand Down
Loading