Skip to content
Open
Show file tree
Hide file tree
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
28 changes: 11 additions & 17 deletions chebai_graph/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
from .architectures.gat import GATGraphPred
from .architectures.gine import GINEGraphPred
from .architectures.resgated import ResGatedGraphPred
from .augmented import (
GATAAPoolGraphPred,
GATAMGPoolGraphPred,
GINEAAPoolGraphPred,
GINEAMGPoolGraphPred,
ResGatedAAPoolGraphPred,
ResGatedAMGPoolGraphPred,
GATAugNodePoolGraphPred,
GATGraphNodeFGNodePoolGraphPred,
ResGatedAugNodePoolGraphPred,
ResGatedGraphNodeFGNodePoolGraphPred,
)
from .dynamic_gni import ResGatedDynamicGNIGraphPred
from .gat import GATGraphPred
from .resgated import ResGatedGraphPred

__all__ = [
"ResGatedGraphPred",
"ResGatedAAPoolGraphPred",
"ResGatedAMGPoolGraphPred",
"ResGatedDynamicGNIGraphPred",
"ResGatedAugNodePoolGraphPred",
"ResGatedGraphNodeFGNodePoolGraphPred",
"GATGraphPred",
"GATAAPoolGraphPred",
"GATAMGPoolGraphPred",
"GINEGraphPred",
"GINEAAPoolGraphPred",
"GINEAMGPoolGraphPred",
"GATAugNodePoolGraphPred",
"GATGraphNodeFGNodePoolGraphPred",
"ResGatedDynamicGNIGraphPred",
]
Empty file.
185 changes: 0 additions & 185 deletions chebai_graph/models/architectures/base.py

This file was deleted.

146 changes: 0 additions & 146 deletions chebai_graph/models/architectures/gine.py

This file was deleted.

Loading
Loading