-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored into potential and interaction
- Loading branch information
FNTwin
committed
Mar 5, 2024
1 parent
9b70b84
commit 0dd2184
Showing
22 changed files
with
65 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .des import DES | ||
|
||
AVAILABLE_DATASETS = {"des": DES} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
from .ani import ANI1, ANI1CCX, ANI1X # noqa | ||
from .comp6 import COMP6 # noqa | ||
from .des import DES # noqa | ||
from .dummy import Dummy # noqa | ||
from .gdml import GDML # noqa | ||
from .geom import GEOM # noqa | ||
from .iso_17 import ISO17 # noqa | ||
from .molecule3d import Molecule3D # noqa | ||
from .nabladft import NablaDFT # noqa | ||
from .orbnet_denali import OrbnetDenali # noqa | ||
from .pcqm import PCQM_B3LYP, PCQM_PM6 # noqa | ||
from .qm7x import QM7X # noqa | ||
from .qmugs import QMugs # noqa | ||
from .sn2_rxn import SN2RXN # noqa | ||
from .solvated_peptides import SolvatedPeptides # noqa | ||
from .spice import Spice # noqa | ||
from .tmqm import TMQM # noqa | ||
from .transition1x import Transition1X # noqa | ||
from .waterclusters3_30 import WaterClusters # noqa | ||
|
||
AVAILABLE_DATASETS = { | ||
"ani1": ANI1, | ||
"ani1ccx": ANI1CCX, | ||
"ani1x": ANI1X, | ||
"comp6": COMP6, | ||
"des": DES, | ||
"gdml": GDML, | ||
"geom": GEOM, | ||
"iso17": ISO17, | ||
"molecule3d": Molecule3D, | ||
"nabladft": NablaDFT, | ||
"orbnetdenali": OrbnetDenali, | ||
"pcqmb3lyp": PCQM_B3LYP, | ||
"pcqmpm6": PCQM_PM6, | ||
"qm7x": QM7X, | ||
"qmugs": QMugs, | ||
"sn2rxn": SN2RXN, | ||
"solvatedpeptides": SolvatedPeptides, | ||
"spice": Spice, | ||
"tmqm": TMQM, | ||
"transition1x": Transition1X, | ||
"watercluster": WaterClusters, | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.