Skip to content

Commit

Permalink
Update default model names.
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Oct 1, 2024
1 parent b046f9f commit 70db930
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions emle/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ class EMLECalculator:

# Create the name of the default model file for each alpha mode.
_default_models = {
"species": _os.path.join(_resource_dir, "emle_qm7_aev.mat"),
"reference": _os.path.join(_resource_dir, "emle_qm7_aev_alphagpr.mat"),
"species": _os.path.join(_resource_dir, "emle_qm7_aev_species.mat"),
"reference": _os.path.join(_resource_dir, "emle_qm7_aev_reference.mat"),
}

# Store the list of supported species.
Expand Down
4 changes: 2 additions & 2 deletions emle/models/_emle.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ class EMLE(_torch.nn.Module):

# Create the name of the default model file for each alpha mode.
_default_models = {
"species": _os.path.join(_resource_dir, "emle_qm7_aev.mat"),
"reference": _os.path.join(_resource_dir, "emle_qm7_aev_alphagpr.mat"),
"species": _os.path.join(_resource_dir, "emle_qm7_aev_species.mat"),
"reference": _os.path.join(_resource_dir, "emle_qm7_aev_reference.mat"),
}

# Store the list of supported species.
Expand Down

0 comments on commit 70db930

Please sign in to comment.