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

Fixed paths for ani1ccx and ani1x #114

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions openqdc/datasets/potential/ani.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class ANI1X(ANI1):
]

__force_mask__ = [False, False, False, False, False, False, True, True]
__links__ = {"ani1ccx.hdf5.gz": "https://zenodo.org/record/4081692/files/293.hdf5.gz"}
__links__ = {"ani1x.hdf5.gz": "https://zenodo.org/record/4081694/files/292.hdf5.gz"}

def convert_forces(self, x):
return super().convert_forces(x) * 0.529177249 # correct the Dataset error
Expand Down Expand Up @@ -192,7 +192,7 @@ class ANI1CCX(ANI1):
"TPNO-CCSD(T):cc-pVDZ Correlation Energy",
]
force_target_names = []
__links__ = {"ani1x.hdf5.gz": "https://zenodo.org/record/4081694/files/292.hdf5.gz"}
__links__ = {"ani1ccx.hdf5.gz": "https://zenodo.org/record/4081692/files/293.hdf5.gz"}

def __smiles_converter__(self, x):
return x.decode("ascii")
Expand Down
Loading