Skip to content

Commit

Permalink
update codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed May 22, 2019
1 parent 848ed22 commit 8782147
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/nn/dense/test_dense_gin_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ def test_dense_sage_conv():
nn = Seq(Lin(in_channels, 32), ReLU(), Lin(32, out_channels))
sparse_conv = GINConv(nn)
dense_conv = DenseGINConv(nn)
dense_conv = DenseGINConv(nn, train_eps=True)
assert dense_conv.__repr__() == (
'DenseGINConv(nn=Sequential(\n'
' (0): Linear(in_features=16, out_features=32, bias=True)\n'
Expand Down

0 comments on commit 8782147

Please sign in to comment.