-
Notifications
You must be signed in to change notification settings - Fork 131
Graph film v2 #386
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
Graph film v2 #386
Conversation
/test |
Successfully created a job for commit db195af: |
/test |
Successfully created a job for commit 85468da: |
Codecov Report
@@ Coverage Diff @@
## master #386 +/- ##
==========================================
- Coverage 91.42% 86.58% -4.84%
==========================================
Files 222 227 +5
Lines 10786 10988 +202
==========================================
- Hits 9861 9514 -347
- Misses 925 1474 +549 |
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #386 +/- ##
==========================================
- Coverage 91.42% 86.58% -4.84%
==========================================
Files 222 227 +5
Lines 10786 10988 +202
==========================================
- Hits 9861 9514 -347
- Misses 925 1474 +549 |
/test |
Successfully created a job for commit 34a78d2: |
chainer_chemistry/models/gnn_film.py
Outdated
activation (~chainer.Function or ~chainer.FunctionNode): | ||
activate function | ||
n_edge_types (int): number of edge type. | ||
Defaults to 4 for single, double, triple and aromatic bond. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Defaults to 5 for single, double, triple, aromatic bond, and self-connection
@@ -118,7 +118,7 @@ def construct_adj_matrix(mol, out_size=-1, self_connection=True): | |||
return adj_array | |||
|
|||
|
|||
def construct_discrete_edge_matrix(mol, out_size=-1): | |||
def construct_discrete_edge_matrix(mol, out_size=-1, self_connection=False): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer add_self_connection_channel
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.