IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Add test_graph_conv_parameter_count_01().

master
Stanislaw Adaszewski 3 years ago
parent
commit
108140b45e
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      tests/icosagon/test_convolve.py

+ 8
- 0
tests/icosagon/test_convolve.py View File

@@ -188,3 +188,11 @@ def test_dropout_graph_conv_activation_dense_03():
def test_dropout_graph_conv_activation_sparse_03():
_test_dropout_graph_conv_activation_03(True)
def test_graph_conv_parameter_count_01():
adj_mat = torch.rand((10, 20)).round()
conv = GraphConv(20, 20, adj_mat)
assert len(list(conv.parameters())) == 1

Loading…
Cancel
Save