-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
7 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
notebooks/_*.ipynb | ||
|
||
# vscode | ||
.vscode | ||
|
||
# jupyter | ||
MANIFEST | ||
build | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from molexpress.layers.base_layer import BaseLayer | ||
from molexpress.layers.gcn_conv import GCNConv | ||
from molexpress.layers.gin_conv import GINConv | ||
from molexpress.layers.readout import Readout | ||
from molexpress.layers.base_layer import BaseLayer as BaseLayer | ||
from molexpress.layers.gcn_conv import GCNConv as GCNConv | ||
from molexpress.layers.gin_conv import GINConv as GINConv | ||
from molexpress.layers.readout import Readout as Readout |