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

Implement representation block of DimNet++ #290

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
4 changes: 4 additions & 0 deletions modelforge/potential/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
SAKEParameters,
SchNetParameters,
TensorNetParameters,
DimeNetParameters
)
from .processing import FromAtomToMoleculeReduction
from .representation import (
Expand All @@ -31,6 +32,7 @@
from .tensornet import TensorNetCore
from .aimnet2 import AimNet2Core
from .ani import ANI2xCore
from .dimenet import DimeNetCore


class _Implemented_NNP_Parameters(Enum):
Expand All @@ -41,6 +43,7 @@ class _Implemented_NNP_Parameters(Enum):
PHYSNET_PARAMETERS = PhysNetParameters
SAKE_PARAMETERS = SAKEParameters
AIMNET2_PARAMETERS = AimNet2Parameters
DIMENET_PARAMETERS = DimeNetParameters

@classmethod
def get_neural_network_parameter_class(cls, neural_network_name: str):
Expand All @@ -63,6 +66,7 @@ class _Implemented_NNPs(Enum):
PAINN = PaiNNCore
SAKE = SAKECore
AIMNET2 = AimNet2Core
DIMENET = DimeNetCore

@classmethod
def get_neural_network_class(cls, neural_network_name: str):
Expand Down
Loading
Loading