Skip to content

Commit

Permalink
Merge pull request #117 from usnistgov/develop
Browse files Browse the repository at this point in the history
Update wt01 name.
  • Loading branch information
knc6 committed Jun 22, 2023
2 parents 4633450 + 5c7c938 commit 272f6df
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
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.05.31"
__version__ = "2023.06.20"
4 changes: 4 additions & 0 deletions alignn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"f_enp",
"final_energy",
"energy_per_atom",
"ead",
]


Expand Down Expand Up @@ -154,6 +155,9 @@ class TrainingConfig(BaseSettings):
"hpov",
"pdbbind",
"pdbbind_core",
"tinnet_OH",
"tinnet_O",
"tinnet_N",
] = "dft_3d"
target: TARGET_ENUM = "formation_energy_peratom"
atom_features: Literal["basic", "atomic_number", "cfid", "cgcnn"] = "cgcnn"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion alignn/ff/ff.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def revised_path():
def wt01_path():
"""Get defaukt model path."""
dpath = os.path.abspath(
str(os.path.join(os.path.dirname(__file__), "alignnff_wt0.1"))
str(os.path.join(os.path.dirname(__file__), "alignnff_wt01"))
)
print("model_path", dpath)
return dpath
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="alignn",
version="2023.05.31",
version="2023.06.20",
author="Kamal Choudhary, Brian DeCost",
author_email="kamal.choudhary@nist.gov",
description="alignn",
Expand All @@ -36,7 +36,7 @@
package_data={
"alignn.ff.alignnff_wt10": ["best_model.pt", "config.json"],
"alignn.ff.alignnff_wt1": ["best_model.pt", "config.json"],
"alignn.ff.alignnff_wt0.1": ["best_model.pt", "config.json"],
"alignn.ff.alignnff_wt01": ["best_model.pt", "config.json"],
"alignn.ff.revised": ["best_model.pt", "config.json"],
},
scripts=[
Expand Down

0 comments on commit 272f6df

Please sign in to comment.